[Xfce4-commits] ristretto:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 74ab8917de918632847d06cdb5020b26d930ef2e (commit)
   from 1055d0442028e92ce2175e94269fdc2cbdfb (commit)

commit 74ab8917de918632847d06cdb5020b26d930ef2e
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 09:01:18 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 142 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index 255c325..f750b86 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,19 +4,19 @@
 # , 2008.
 # Robert Hartl hartl.rob...@gmail.com, 2009.
 # Tomáš Vadina kyber...@gmail.com, 2011, 2012.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: Ristretto 0.0.20\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2012-02-07 05:00+\n
+POT-Creation-Date: 2012-02-13 06:00+\n
 PO-Revision-Date: 2012-02-07 09:57+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
 Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
-Language: sk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: sk\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 
 #: ../src/main.c:61
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Add tiling feature (bug #6648)

2012-02-13 Thread Olivier Fourdan
Updating branch refs/heads/master
 to 7727187a768f73d8d3647d28dfa7057b7a3e4288 (commit)
   from 2597c6529e0ff877da7065bedd5cbcc2d9facb70 (commit)

commit 7727187a768f73d8d3647d28dfa7057b7a3e4288
Author: Olivier Fourdan ofour...@redhat.com
Date:   Mon Feb 13 09:16:03 2012 +0100

Add tiling feature (bug #6648)

 settings-dialogs/xfwm4-settings.c |4 +
 src/client.c  |  166 +++---
 src/client.h  |   15 ++
 src/events.c  |   19 ++-
 src/moveresize.c  |  360 +++--
 src/settings.c|4 +
 src/settings.h|4 +
 7 files changed, 408 insertions(+), 164 deletions(-)

diff --git a/settings-dialogs/xfwm4-settings.c 
b/settings-dialogs/xfwm4-settings.c
index 4528099..49f45b2 100644
--- a/settings-dialogs/xfwm4-settings.c
+++ b/settings-dialogs/xfwm4-settings.c
@@ -278,6 +278,10 @@ static const ShortcutTemplate shortcut_values[] = {
   { N_(Move window to workspace 10), move_window_workspace_10_key, NULL, },
   { N_(Move window to workspace 11), move_window_workspace_11_key, NULL, },
   { N_(Move window to workspace 12), move_window_workspace_12_key, NULL, },
+  { N_(Tile window to the top), tile_up_key, NULL, },
+  { N_(Tile window to the bottom), tile_down_key, NULL, },
+  { N_(Tile window to the left), tile_left_key, NULL, },
+  { N_(Tile window to the right), tile_right_key, NULL, },
   { N_(Show desktop), show_desktop_key, NULL },
   { N_(Upper workspace), up_workspace_key, NULL },
   { N_(Bottom workspace), down_workspace_key, NULL },
diff --git a/src/client.c b/src/client.c
index 1eb4e59..1149cb2 100644
--- a/src/client.c
+++ b/src/client.c
@@ -108,7 +108,7 @@ struct _ButtonPressData
 static void
 clientUpdateIconPix (Client * c);
 static void
-clientNewMaxSize (Client * c, XWindowChanges *wc);
+clientNewMaxSize (Client * c, XWindowChanges *wc, GdkRectangle *, 
tilePositionType tile);
 
 Display *
 clientGetXDisplay (Client * c)
@@ -980,7 +980,11 @@ clientGetMWMHints (Client * c, gboolean update)
 /* If client is maximized, we need to update its coordonates and size 
as well */
 if (FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED))
 {
-clientNewMaxSize (c, wc);
+GdkRectangle rect;
+myScreenFindMonitorAtPoint (screen_info,
+frameX (c) + (frameWidth (c) / 2),
+frameY (c) + (frameHeight (c) / 2), 
rect);
+clientNewMaxSize (c, wc, rect, TILE_NONE);
 }
 
 clientConfigure (c, wc, CWX | CWY | CWWidth | CWHeight, 
CFG_FORCE_REDRAW);
@@ -3029,7 +3033,7 @@ clientRemoveMaximizeFlag (Client * c)
 static void
 clientNewMaxState (Client * c, XWindowChanges *wc, int mode)
 {
-if (mode  CLIENT_FLAG_MAXIMIZED_HORIZ)
+if (FLAG_TEST (mode, CLIENT_FLAG_MAXIMIZED_HORIZ))
 {
 if (!FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED_HORIZ))
 {
@@ -3039,11 +3043,13 @@ clientNewMaxState (Client * c, XWindowChanges *wc, int 
mode)
 {
 FLAG_UNSET (c-flags, CLIENT_FLAG_MAXIMIZED_HORIZ);
 wc-x = c-old_x;
+wc-y = c-old_y;
 wc-width = c-old_width;
+wc-height = c-old_height;
 }
 }
 
-if (mode  CLIENT_FLAG_MAXIMIZED_VERT)
+if (FLAG_TEST (mode, CLIENT_FLAG_MAXIMIZED_VERT))
 {
 if (!FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED_VERT))
 {
@@ -3052,38 +3058,33 @@ clientNewMaxState (Client * c, XWindowChanges *wc, int 
mode)
 else
 {
 FLAG_UNSET (c-flags, CLIENT_FLAG_MAXIMIZED_VERT);
+wc-x = c-old_x;
 wc-y = c-old_y;
+wc-width = c-old_width;
 wc-height = c-old_height;
 }
 }
 }
 
 static void
-clientNewMaxSize (Client * c, XWindowChanges *wc)
+clientNewMaxSize (Client * c, XWindowChanges *wc, GdkRectangle *rect, 
tilePositionType tile)
 {
 ScreenInfo *screen_info;
-GdkRectangle rect;
-int cx, cy, full_x, full_y, full_w, full_h;
+int full_x, full_y, full_w, full_h;
 int tmp_x, tmp_y, tmp_w, tmp_h;
 
 tmp_x = frameX (c);
 tmp_y = frameY (c);
 tmp_h = frameHeight (c);
 tmp_w = frameWidth (c);
-
-cx = tmp_x + (tmp_w / 2);
-cy = tmp_y + (tmp_h / 2);
-
 screen_info = c-screen_info;
 
-myScreenFindMonitorAtPoint (screen_info, cx, cy, rect);
-
-full_x = MAX (screen_info-params-xfwm_margins[STRUTS_LEFT], rect.x);
-full_y = MAX (screen_info-params-xfwm_margins[STRUTS_TOP], rect.y);
+full_x = MAX (screen_info-params-xfwm_margins[STRUTS_LEFT], rect-x);
+full_y = MAX (screen_info-params-xfwm_margins[STRUTS_TOP], rect-y);
 full_w = MIN (screen_info-width - 
screen_info-params-xfwm_margins[STRUTS_RIGHT],
-  rect.x + rect.width) - full_x;
+  rect-x + rect-width) - full_x;
 full_h = MIN (screen_info-height - 

[Xfce4-commits] ristretto:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 492504d340623c92957e6f94ded2bf0f107bbbed (commit)
   from 74ab8917de918632847d06cdb5020b26d930ef2e (commit)

commit 492504d340623c92957e6f94ded2bf0f107bbbed
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 09:45:03 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 142 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index f750b86..901446e 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,13 +4,13 @@
 # , 2008.
 # Robert Hartl hartl.rob...@gmail.com, 2009.
 # Tomáš Vadina kyber...@gmail.com, 2011, 2012.
-# 
+#
 msgid 
 msgstr 
 Project-Id-Version: Ristretto 0.0.20\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
 POT-Creation-Date: 2012-02-13 06:00+\n
-PO-Revision-Date: 2012-02-07 09:57+0100\n
+PO-Revision-Date: 2012-02-13 09:41+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
 Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
 MIME-Version: 1.0\n
@@ -354,7 +354,7 @@ msgid 
 This setting determines the method iRistretto/i will use\n
 to configure the desktop wallpaper.
 msgstr 
-Nastaví, ktorý systém aktuálne spravuje pracovnú polochu.\n
+Nastaví, ktorý systém aktuálne spravuje pracovnú plochu.\n
 Toto nastavenie určuje metódu, ktorú iRistretto/i použije \n
 pre nastavenie pozadia pracovnej plochy.
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Navigate with arrows in task switcher (bug #4752)

2012-02-13 Thread Olivier Fourdan
Updating branch refs/heads/master
 to a692e96c5486e2c1b01b6d186249b137331b376f (commit)
   from 7727187a768f73d8d3647d28dfa7057b7a3e4288 (commit)

commit a692e96c5486e2c1b01b6d186249b137331b376f
Author: Kees van Veen kees.vanv...@gmail.com
Date:   Mon Feb 13 10:02:13 2012 +0100

Navigate with arrows in task switcher (bug #4752)

 src/cycle.c  |   13 ++-
 src/tabwin.c |  119 +++---
 src/tabwin.h |1 +
 3 files changed, 93 insertions(+), 40 deletions(-)

diff --git a/src/cycle.c b/src/cycle.c
index 9098d35..fb3b43b 100644
--- a/src/cycle.c
+++ b/src/cycle.c
@@ -228,7 +228,7 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 ClientCycleData *passdata;
 Client *c, *removed;
 eventFilterStatus status;
-KeyCode cancel;
+KeyCode cancel, left, right, up, down;
 int key, modifiers;
 gboolean key_pressed, cycling, gone;
 
@@ -244,6 +244,10 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 screen_info = c-screen_info;
 display_info = screen_info-display_info;
 cancel = screen_info-params-keys[KEY_CANCEL].keycode;
+left = screen_info-params-keys[KEY_LEFT].keycode;
+right = screen_info-params-keys[KEY_RIGHT].keycode;
+up = screen_info-params-keys[KEY_UP].keycode;
+down = screen_info-params-keys[KEY_DOWN].keycode;
 modifiers = (screen_info-params-keys[KEY_CYCLE_WINDOWS].modifier |
  
screen_info-params-keys[KEY_CYCLE_REVERSE_WINDOWS].modifier);
 status = EVENT_FILTER_STOP;
@@ -286,6 +290,13 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 c2 = tabwinSelectHead (passdata-tabwin);
 cycling = FALSE;
 }
+else if (xevent-xkey.keycode == up || 
xevent-xkey.keycode == down || xevent-xkey.keycode == left || 
xevent-xkey.keycode == right)
+{
+   int rowdelta = (xevent-xkey.keycode == up   ? -1 : 
xevent-xkey.keycode == down  ? 1 : 0);
+   int coldelta = (xevent-xkey.keycode == left ? -1 : 
xevent-xkey.keycode == right ? 1 : 0);
+TRACE (Cycle: arrow);
+c2 = tabwinSelectDelta(passdata-tabwin, rowdelta, 
coldelta);
+}
 else if (key == KEY_CYCLE_REVERSE_WINDOWS)
 {
 TRACE (Cycle: previous);
diff --git a/src/tabwin.c b/src/tabwin.c
index 0a224c3..0abd49a 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -242,14 +242,27 @@ createWindowIcon (Client *c, gint icon_size)
 return icon;
 }
 
+static int
+getMinMonitorWidth (ScreenInfo *screen_info)
+{
+int i, min_width, num_monitors = myScreenGetNumMonitors (screen_info);
+for (min_width = i = 0; i  num_monitors; i++)
+{
+GdkRectangle monitor;
+gdk_screen_get_monitor_geometry (screen_info-gscr, i, monitor);
+if (min_width == 0 || monitor.width  min_width)
+min_width = monitor.width;
+}
+return min_width;
+}
+
 static GtkWidget *
 createWindowlist (ScreenInfo *screen_info, TabwinWidget *tbw)
 {
 Client *c;
 GList *client_list;
-GdkRectangle monitor;
 GtkWidget *windowlist, *icon, *selected;
-int packpos;
+int i, packpos, monitor_width;
 Tabwin *t;
 gint icon_size = WIN_ICON_SIZE;
 
@@ -259,12 +272,11 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 c = NULL;
 selected = NULL;
 t = tbw-tabwin;
+monitor_width = getMinMonitorWidth (screen_info);
 g_return_val_if_fail (screen_info-client_count  0, NULL);
 
-gdk_screen_get_monitor_geometry (screen_info-gscr, tbw-monitor_num, 
monitor);
-
 gtk_widget_style_get (GTK_WIDGET (tbw), icon-size, icon_size, NULL);
-tbw-grid_cols = (monitor.width / (icon_size + 2 * WIN_ICON_BORDER)) * 
0.75;
+tbw-grid_cols = (monitor_width / (icon_size + 2 * WIN_ICON_BORDER)) * 
0.75;
 tbw-grid_rows = screen_info-client_count / tbw-grid_cols + 1;
 tbw-widgets = NULL;
 windowlist = gtk_table_new (tbw-grid_rows, tbw-grid_cols, FALSE);
@@ -436,6 +448,30 @@ tabwinCreateWidget (Tabwin *tabwin, ScreenInfo 
*screen_info, gint monitor_num)
 return tbw;
 }
 
+static Client *
+tabwinChange2Selected (Tabwin *t, GList *selected)
+{
+GList *tabwin_list, *widgets;
+GtkWidget *icon;
+TabwinWidget *tbw;
+
+t-selected = selected;
+for (tabwin_list = t-tabwin_list; tabwin_list; tabwin_list = g_list_next 
(tabwin_list))
+{
+tbw = (TabwinWidget *) tabwin_list-data;
+for (widgets = tbw-widgets; widgets; widgets = g_list_next (widgets))
+{
+icon = GTK_WIDGET (widgets-data);
+if (((Client *) g_object_get_data (G_OBJECT(icon), 
client-ptr-val)) == t-selected-data)
+{
+tabwinSetSelected (tbw, icon);
+gtk_widget_queue_draw (tbw-window);
+}
+}

[Xfce4-commits] xfwm4:master Rework patch for clarity, fix build on git master

2012-02-13 Thread Olivier Fourdan
Updating branch refs/heads/master
 to ce855a1ac1c5b80e3d6896b4d96cd938a7dab9b9 (commit)
   from a692e96c5486e2c1b01b6d186249b137331b376f (commit)

commit ce855a1ac1c5b80e3d6896b4d96cd938a7dab9b9
Author: Olivier Fourdan ofour...@redhat.com
Date:   Mon Feb 13 10:03:04 2012 +0100

Rework patch for clarity, fix build on git master

 src/cycle.c  |   19 ++---
 src/tabwin.c |   81 +
 2 files changed, 72 insertions(+), 28 deletions(-)

diff --git a/src/cycle.c b/src/cycle.c
index fb3b43b..b5e45f1 100644
--- a/src/cycle.c
+++ b/src/cycle.c
@@ -290,12 +290,21 @@ clientCycleEventFilter (XEvent * xevent, gpointer data)
 c2 = tabwinSelectHead (passdata-tabwin);
 cycling = FALSE;
 }
-else if (xevent-xkey.keycode == up || 
xevent-xkey.keycode == down || xevent-xkey.keycode == left || 
xevent-xkey.keycode == right)
+else if (xevent-xkey.keycode == up)
 {
-   int rowdelta = (xevent-xkey.keycode == up   ? -1 : 
xevent-xkey.keycode == down  ? 1 : 0);
-   int coldelta = (xevent-xkey.keycode == left ? -1 : 
xevent-xkey.keycode == right ? 1 : 0);
-TRACE (Cycle: arrow);
-c2 = tabwinSelectDelta(passdata-tabwin, rowdelta, 
coldelta);
+c2 = tabwinSelectDelta(passdata-tabwin, -1, 0);
+}
+else if (xevent-xkey.keycode == down)
+{
+c2 = tabwinSelectDelta(passdata-tabwin, 1, 0);
+}
+else if (xevent-xkey.keycode == left)
+{
+c2 = tabwinSelectDelta(passdata-tabwin, 0, -1);
+}
+else if (xevent-xkey.keycode == right)
+{
+c2 = tabwinSelectDelta(passdata-tabwin, -0, 1);
 }
 else if (key == KEY_CYCLE_REVERSE_WINDOWS)
 {
diff --git a/src/tabwin.c b/src/tabwin.c
index 0abd49a..675e5b4 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -465,7 +465,7 @@ tabwinChange2Selected (Tabwin *t, GList *selected)
 if (((Client *) g_object_get_data (G_OBJECT(icon), 
client-ptr-val)) == t-selected-data)
 {
 tabwinSetSelected (tbw, icon);
-gtk_widget_queue_draw (tbw-window);
+gtk_widget_queue_draw (GTK_WIDGET(tbw));
 }
 }
 }
@@ -635,43 +635,78 @@ tabwinSelectPrev (Tabwin *t)
 }
 
 Client *
-tabwinSelectDelta (Tabwin *t, int rowdelta, int coldelta)
+tabwinSelectDelta (Tabwin *t, int row_delta, int col_delta)
 {
 GList *selected;
-int curpos, curcol, currow, listlen, cols, rows;
+int pos_current, col_current, row_current, nitems, cols, rows;
 TabwinWidget *tbw;
 
 TRACE (entering tabwinSelectDelta);
 g_return_val_if_fail (t != NULL, NULL);
 
 tbw = (TabwinWidget *) t-tabwin_list-data;
-curpos = g_list_position (*t-client_list, t-selected);
-listlen = g_list_length (*t-client_list);
-cols = (listlen  tbw-grid_cols ? listlen : tbw-grid_cols);
-rows = (listlen-1)/cols + 1;
-curcol = curpos % cols;
-currow = curpos / cols;
-
-curcol += coldelta;
-curcol = (curcol0 ? cols - 1 : curcol=cols ? 0 : curcol);
-currow += rowdelta;
-currow = (currow0 ? rows - 1 : currow=rows ? 0 : currow);
-curpos = curcol + currow*cols; /* So here we are at the new (wrapped) 
position in the rectangle */
-if (curpos=listlen)   /* If that position does not exist */
-{
-if (coldelta)  /* Let horizontal prevail */
+pos_current = g_list_position (*t-client_list, t-selected);
+nitems = g_list_length (*t-client_list);
+
+cols = MIN (nitems, tbw-grid_cols);
+rows = (nitems - 1) / cols + 1;
+col_current = pos_current % cols;
+row_current = pos_current / cols;
+
+/* Wrap column */
+col_current += col_delta;
+if (col_current  0)
+{
+col_current = cols - 1;
+}
+else if (col_current = cols)
+{
+col_current = 0;
+}
+
+/* Wrap row */
+row_current += row_delta;
+if (row_current  0)
+{
+row_current = rows - 1;
+}
+else if (row_current = rows)
+{
+row_current = 0;
+}
+
+/* So here we are at the new (wrapped) position in the rectangle */
+pos_current = col_current + row_current * cols;
+if (pos_current = nitems)   /* If that position does not exist */
+{
+if (col_delta)/* Let horizontal prevail */
 {
-curcol = (coldelta0 ? 0 : (listlen-1)%cols);
+if (col_delta  0)
+{
+col_current = 0;
+}
+else
+{
+

[Xfce4-commits] xfwm4:master Fix key testing to avoid tiling up whatever key tile is used (oops)

2012-02-13 Thread Olivier Fourdan
Updating branch refs/heads/master
 to 6ed2575f92173ac40cb0f04bd3a730cb618d9d3d (commit)
   from ce855a1ac1c5b80e3d6896b4d96cd938a7dab9b9 (commit)

commit 6ed2575f92173ac40cb0f04bd3a730cb618d9d3d
Author: Olivier Fourdan ofour...@redhat.com
Date:   Mon Feb 13 10:18:58 2012 +0100

Fix key testing to avoid tiling up whatever key tile is used (oops)

 src/events.c |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/events.c b/src/events.c
index 73c5051..6ef3b22 100644
--- a/src/events.c
+++ b/src/events.c
@@ -434,14 +434,17 @@ handleKeyPress (DisplayInfo *display_info, XKeyEvent * ev)
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
TILE_DOWN);
+break;
 case KEY_TILE_LEFT:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
TILE_LEFT);
+break;
 case KEY_TILE_RIGHT:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
TILE_RIGHT);
+break;
 case KEY_TILE_UP:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] exo:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 48ebd2b12fdf25d8d163d6a66000fad901047c26 (commit)
   from 43cdd8a7d91b0be6dbfadbd9e4a498475416c8e0 (commit)

commit 48ebd2b12fdf25d8d163d6a66000fad901047c26
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 10:23:52 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 274 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |  221 ++
 1 files changed, 121 insertions(+), 100 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index f9d889a..7034b73 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -2,19 +2,20 @@
 # Copyright (C) 2009 Benedikt Meurer, Jannis Pohlmann, Nick Schermer.
 # This file is distributed under the same license as the exo package.
 # Robert Hartl hartl.rob...@gmail.com, 2009.
-# Tomáš Vadina kyber...@gmail.com, 2011.
+# Tomáš Vadina kyber...@gmail.com, 2011, 2012.
+#
 msgid 
 msgstr 
 Project-Id-Version: 0.6.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-07-12 04:00+\n
-PO-Revision-Date: 2011-07-12 09:42+0100\n
+POT-Creation-Date: 2012-02-13 05:03+\n
+PO-Revision-Date: 2012-02-13 10:23+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
-Language-Team: Slovak sk-i...@lists.linux.sk\n
+Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
+Language: sk\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: sk\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 X-Poedit-Language: Slovak\n
 X-Poedit-Country: SLOVAKIA\n
@@ -65,16 +66,18 @@ msgstr Nepodarilo sa prečítať súbor \%s\: %s
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
-msgid Failed to load image \%s\: Unknown reason, probably a corrupt image 
file
-msgstr Nepodarilo sa načítať obrázok \%s\: Neznámy dôvod, pravdepodobne je 
súbor s obrázkom poškodený.
+msgid 
+Failed to load image \%s\: Unknown reason, probably a corrupt image file
+msgstr 
+Nepodarilo sa načítať obrázok \%s\: Neznámy dôvod, pravdepodobne je súbor 
+s obrázkom poškodený.
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
 msgid Failed to open \%s\.
 msgstr Nepodarilo sa otvoriť \%s\.
 
-#: ../exo/exo-icon-bar.c:277
-#: ../exo/exo-icon-view.c:776
+#: ../exo/exo-icon-bar.c:277 ../exo/exo-icon-view.c:776
 msgid Orientation
 msgstr Orientácia
 
@@ -82,23 +85,19 @@ msgstr Orientácia
 msgid The orientation of the iconbar
 msgstr Orientácia panela ikon.
 
-#: ../exo/exo-icon-bar.c:294
-#: ../exo/exo-icon-view.c:793
+#: ../exo/exo-icon-bar.c:294 ../exo/exo-icon-view.c:793
 msgid Pixbuf column
 msgstr Stĺpec pixbuf
 
-#: ../exo/exo-icon-bar.c:295
-#: ../exo/exo-icon-view.c:794
+#: ../exo/exo-icon-bar.c:295 ../exo/exo-icon-view.c:794
 msgid Model column used to retrieve the icon pixbuf from
 msgstr Stĺpec modelu používaný pre získanie pixbufu ikony z
 
-#: ../exo/exo-icon-bar.c:310
-#: ../exo/exo-icon-view.c:920
+#: ../exo/exo-icon-bar.c:310 ../exo/exo-icon-view.c:920
 msgid Text column
 msgstr Textový stĺpec
 
-#: ../exo/exo-icon-bar.c:311
-#: ../exo/exo-icon-view.c:921
+#: ../exo/exo-icon-bar.c:311 ../exo/exo-icon-view.c:921
 msgid Model column used to retrieve the text from
 msgstr Stĺpec modelu používaný pre získanie textu z
 
@@ -118,33 +117,27 @@ msgstr Aktívny
 msgid Active item index
 msgstr Index aktívnych položiek
 
-#: ../exo/exo-icon-bar.c:347
-#: ../exo/exo-icon-bar.c:348
+#: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
 msgid Active item fill color
 msgstr Farba výplne aktívnych položiek
 
-#: ../exo/exo-icon-bar.c:354
-#: ../exo/exo-icon-bar.c:355
+#: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
 msgid Active item border color
 msgstr Farba okraja aktívnych položiek
 
-#: ../exo/exo-icon-bar.c:361
-#: ../exo/exo-icon-bar.c:362
+#: ../exo/exo-icon-bar.c:361 ../exo/exo-icon-bar.c:362
 msgid Active item text color
 msgstr Farba textu aktívnych položiek
 
-#: ../exo/exo-icon-bar.c:368
-#: ../exo/exo-icon-bar.c:369
+#: ../exo/exo-icon-bar.c:368 ../exo/exo-icon-bar.c:369
 msgid Cursor item fill color
 msgstr Farba výplne položiek, nad ktorými sa nachádza kurzor
 
-#: ../exo/exo-icon-bar.c:375
-#: ../exo/exo-icon-bar.c:376
+#: ../exo/exo-icon-bar.c:375 ../exo/exo-icon-bar.c:376
 msgid Cursor item border color
 msgstr Farba okrajov položiek, nad ktorými sa nachádza kurzor
 
-#: ../exo/exo-icon-bar.c:382
-#: ../exo/exo-icon-bar.c:383
+#: ../exo/exo-icon-bar.c:382 ../exo/exo-icon-bar.c:383
 msgid Cursor item text color
 msgstr Farba textu položiek, nad ktorými sa nachádza kurzor
 
@@ -214,8 +207,7 @@ msgid All Icons
 msgstr Všetky ikony
 
 #. EXO_ICON_CHOOSER_CONTEXT_FILE
-#: ../exo/exo-icon-chooser-dialog.c:139
-#: ../exo/exo-icon-chooser-dialog.c:285
+#: ../exo/exo-icon-chooser-dialog.c:139 ../exo/exo-icon-chooser-dialog.c:285
 msgid Image Files
 msgstr Súbory obrázkov
 
@@ -287,7 

[Xfce4-commits] midori:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to c05f2a86b4e99558666a7672f7bd2e2beebc27fd (commit)
   from e20ec3fb74b75fdf60cdd1261b6db2651573dab3 (commit)

commit c05f2a86b4e99558666a7672f7bd2e2beebc27fd
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 10:33:39 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 653 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |  453 +-
 1 files changed, 239 insertions(+), 214 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index 5e90d50..72163d0 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: Midori 0.3.6-1\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-02-07 04:39+\n
-PO-Revision-Date: 2012-02-07 09:50+0100\n
+POT-Creation-Date: 2012-02-13 05:39+\n
+PO-Revision-Date: 2012-02-13 10:32+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
 Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
 Language: sk\n
@@ -45,7 +45,7 @@ msgstr Midori - súkromné prehliadanie
 msgid Open a new private browsing window
 msgstr Otvoriť nové okno súkromného prehliadania
 
-#: ../data/midori-private.desktop.in.h:3 ../midori/midori-view.c:4013
+#: ../data/midori-private.desktop.in.h:3 ../midori/midori-view.c:3976
 msgid Private Browsing
 msgstr Súkromné prehliadanie
 
@@ -75,7 +75,7 @@ msgid Failed to clear history: %s\n
 msgstr Nepodarilo sa zmazať históriu: %s\n
 
 #: ../midori/main.c:438 ../midori/main.c:559
-#: ../extensions/formhistory/formhistory.c:249
+#: ../extensions/formhistory/formhistory.c:526
 #, c-format
 msgid Failed to open database: %s\n
 msgstr Zlyhalo otvorenie databázy: %s\n
@@ -332,7 +332,7 @@ msgstr _Ignorovať
 msgid _Bookmark
 msgstr _Záložka
 
-#: ../midori/midori-app.c:1332 ../midori/midori-browser.c:6049
+#: ../midori/midori-app.c:1332 ../midori/midori-browser.c:6036
 msgid _Bookmarks
 msgstr _Záložky
 
@@ -349,7 +349,7 @@ msgid _Extensions
 msgstr _Rozšírenia
 
 #. i18n: Browsing history, visited web pages, closed tabs
-#: ../midori/midori-app.c:1336 ../midori/midori-browser.c:4619
+#: ../midori/midori-app.c:1336 ../midori/midori-browser.c:4606
 msgid _History
 msgstr _História
 
@@ -377,7 +377,7 @@ msgstr Pluginy _Netscape
 msgid _Closed Tabs
 msgstr _Zatvorené karty
 
-#: ../midori/midori-app.c:1343 ../midori/midori-browser.c:5206
+#: ../midori/midori-app.c:1343 ../midori/midori-browser.c:5193
 msgid New _Window
 msgstr Nové _okno
 
@@ -402,12 +402,12 @@ msgstr Neznámy formát záložiek
 msgid Writing failed.
 msgstr Zapisovanie zlyhalo.
 
-#: ../midori/midori-browser.c:326 ../midori/midori-browser.c:5288
-#: ../midori/midori-browser.c:5297
+#: ../midori/midori-browser.c:326 ../midori/midori-browser.c:5275
+#: ../midori/midori-browser.c:5284
 msgid Reload the current page
 msgstr Obnoviť aktuálnu stránku
 
-#: ../midori/midori-browser.c:335 ../midori/midori-browser.c:5294
+#: ../midori/midori-browser.c:335 ../midori/midori-browser.c:5281
 msgid Stop loading the current page
 msgstr Zastaviť načítanie aktuálnej stránky
 
@@ -455,7 +455,7 @@ msgstr _Názov:
 msgid _Address:
 msgstr _Adresa:
 
-#: ../midori/midori-browser.c:844 ../midori/midori-browser.c:4356
+#: ../midori/midori-browser.c:844 ../midori/midori-browser.c:4343
 msgid _Folder:
 msgstr _Priečinok:
 
@@ -491,7 +491,7 @@ msgstr Nie je dosť miesta pre stiahnutie \%s\.
 msgid The file needs %s but only %s are left.
 msgstr Potrebuje %s, ale k dispozícií je iba %s.
 
-#: ../midori/midori-browser.c:1015 ../midori/midori-browser.c:4425
+#: ../midori/midori-browser.c:1015 ../midori/midori-browser.c:4412
 msgid Save file as
 msgstr Uložiť súbor ako
 
@@ -532,11 +532,11 @@ msgstr Nepodarilo sa stiahnuť vybraný obrázok.
 msgid Save file
 msgstr Uložiť súbor
 
-#: ../midori/midori-browser.c:2327
+#: ../midori/midori-browser.c:2326
 msgid Open file
 msgstr Otvoriť súbor
 
-#: ../midori/midori-browser.c:2458
+#: ../midori/midori-browser.c:2457
 msgid 
 To use the above URI open a news aggregator. There is usually a menu or 
 button \New Subscription\, \New News Feed\ or similar.\n
@@ -551,141 +551,141 @@ msgstr 
 Aplikácie, položka Čítačka RSS). Najbližšie kliknutie na ikonu RSS pridá 
 kanál priamo do čítačky RSS.
 
-#: ../midori/midori-browser.c:2464 ../extensions/feed-panel/main.c:365
+#: ../midori/midori-browser.c:2463 ../extensions/feed-panel/main.c:365
 msgid New feed
 msgstr Nový kanál
 
-#: ../midori/midori-browser.c:2507 ../midori/midori-browser.c:5357
+#: ../midori/midori-browser.c:2506 ../midori/midori-browser.c:5344
 #: ../panels/midori-bookmarks.c:426
 msgid Add a new bookmark
 msgstr Pridať novú záložku
 
-#: ../midori/midori-browser.c:3004 ../midori/midori-searchaction.c:488
+#: ../midori/midori-browser.c:3005 ../midori/midori-searchaction.c:488
 msgid Empty
 msgstr Prázdne
 
-#: ../midori/midori-browser.c:3500
+#: ../midori/midori-browser.c:3501
 

[Xfce4-commits] exo:master l10n: Updated Italian (it) translation to 99%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to c892f27ef2a8200c5d4c086275cf57d416e2322c (commit)
   from 48ebd2b12fdf25d8d163d6a66000fad901047c26 (commit)

commit c892f27ef2a8200c5d4c086275cf57d416e2322c
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Feb 13 10:59:55 2012 +0100

l10n: Updated Italian (it) translation to 99%

New status: 273 messages complete with 1 fuzzy and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/it.po |  175 +-
 1 files changed, 94 insertions(+), 81 deletions(-)

diff --git a/po/it.po b/po/it.po
index 6182ac1..a28cece 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,15 +7,14 @@ msgid 
 msgstr 
 Project-Id-Version: exo\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-16 16:35+0100\n
+POT-Creation-Date: 2012-02-13 05:03+\n
 PO-Revision-Date: 2010-02-22 21:54+0100\n
 Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
-Language-Team: Italian Translation Team xfce-it-translators@googlegroups.
-com\n
-Language: \n
+Language-Team: Italian Translation Team 
xfce-it-translat...@googlegroups.com\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: \n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 X-Generator: KBabel 1.11.4\n
 
@@ -549,8 +548,8 @@ msgstr   --strip-comments  Rimuove i commenti dai file 
XML\n
 msgid   --strip-content   Remove node contents from XML files\n
 msgstr   --strip-content   Rimuove i contenuti nodali dai file XML\n
 
-#: ../exo-csource/main.c:304 ../exo-desktop-item-edit/main.c:177
-#: ../exo-open/main.c:471
+#: ../exo-csource/main.c:304 ../exo-desktop-item-edit/main.c:193
+#: ../exo-open/main.c:483
 #, c-format
 msgid 
 Copyright (c) %s\n
@@ -565,8 +564,8 @@ msgstr 
 Scritto da Benedikt Meurer be...@xfce.org.\n
 \n
 
-#: ../exo-csource/main.c:308 ../exo-desktop-item-edit/main.c:181
-#: ../exo-open/main.c:475
+#: ../exo-csource/main.c:308 ../exo-desktop-item-edit/main.c:197
+#: ../exo-open/main.c:487
 #, c-format
 msgid 
 %s comes with ABSOLUTELY NO WARRANTY,\n
@@ -581,8 +580,8 @@ msgstr 
 pacchetto dei sorgenti di %s.\n
 \n
 
-#: ../exo-csource/main.c:312 ../exo-desktop-item-edit/main.c:185
-#: ../exo-open/main.c:479
+#: ../exo-csource/main.c:312 ../exo-desktop-item-edit/main.c:201
+#: ../exo-open/main.c:491
 #, c-format
 msgid Please report bugs to %s.\n
 msgstr Segnalare i problemi a %s.\n
@@ -627,37 +626,44 @@ msgstr Script per la Shell
 msgid Create Launcher b%s/b
 msgstr Crea avviatore b%s/b
 
-#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:297
 msgid _Name:
 msgstr Nom_e:
 
-#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:313
 msgid C_omment:
 msgstr C_ommento:
 
-#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:329
 msgid Comm_and:
 msgstr Co_mando:
 
-#. TRANSLATORS: Label in Create Link dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in Create Link dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:344
 msgid _URL:
 msgstr _URL:
 
-#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid Working _Directory:
 msgstr Cartella di la_voro:
 
-#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:389
 msgid _Icon:
 msgstr _Icona:
 
-#. TRANSLATORS: Label for the icon button in Create Launcher/Create Link 
dialog if no icon selected
+#. TRANSLATORS: Label for the icon button in Create Launcher/Create Link
+#. dialog if no icon selected
 #. setup a label to tell that no icon was selected
 #: ../exo-desktop-item-edit/exo-die-editor.c:406
 #: ../exo-desktop-item-edit/exo-die-editor.c:1233
@@ -668,9 +674,11 @@ msgstr Nessuna icona
 msgid Options:
 msgstr Opzioni:
 
-#. TRANSLATORS: Check button label in Create Launcher dialog, make sure to 
avoid mnemonic conflicts
-#. *  and sync your translations with the translations in Thunar 
and xfce4-panel.
-#.
+#. TRANSLATORS: Check button label in Create Launcher dialog, make sure to
+#. avoid mnemonic conflicts
+#. *   

[Xfce4-commits] exo:master l10n: Updated Italian (it) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 8fef6d753865f8918873b525f9c7e673cf665284 (commit)
   from c892f27ef2a8200c5d4c086275cf57d416e2322c (commit)

commit 8fef6d753865f8918873b525f9c7e673cf665284
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Feb 13 11:00:33 2012 +0100

l10n: Updated Italian (it) translation to 100%

New status: 274 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/it.po |1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/po/it.po b/po/it.po
index a28cece..ee700eb 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1181,7 +1181,6 @@ msgid Balsa
 msgstr Balsa
 
 #: ../exo-helper/helpers/chromium.desktop.in.in.h:1
-#, fuzzy
 msgid Chromium
 msgstr Chromium
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master l10n: Updated Italian (it) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 35b11cad17f1f8ead05e4b3d6e9e111d08654279 (commit)
   from c05f2a86b4e99558666a7672f7bd2e2beebc27fd (commit)

commit 35b11cad17f1f8ead05e4b3d6e9e111d08654279
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Feb 13 11:04:06 2012 +0100

l10n: Updated Italian (it) translation to 100%

New status: 653 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/it.po |  463 +-
 1 files changed, 247 insertions(+), 216 deletions(-)

diff --git a/po/it.po b/po/it.po
index f48b343..baec56e 100644
--- a/po/it.po
+++ b/po/it.po
@@ -9,7 +9,7 @@ msgid 
 msgstr 
 Project-Id-Version: midori 0.1.7\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-02-04 12:51+\n
+POT-Creation-Date: 2012-02-13 05:39+\n
 PO-Revision-Date: 2011-12-24 09:51+0100\n
 Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
 Language-Team: Italian xfce-it-translat...@googlegroups.com\n
@@ -44,7 +44,7 @@ msgstr Navigazione privata di Midori
 msgid Open a new private browsing window
 msgstr Apre una nuova finestra di navigazione privata
 
-#: ../data/midori-private.desktop.in.h:3 ../midori/midori-view.c:4013
+#: ../data/midori-private.desktop.in.h:3 ../midori/midori-view.c:3976
 msgid Private Browsing
 msgstr Navigazione privata
 
@@ -74,7 +74,7 @@ msgid Failed to clear history: %s\n
 msgstr Errore nella cancellazione della cronologia: %s\n
 
 #: ../midori/main.c:438 ../midori/main.c:559
-#: ../extensions/formhistory/formhistory.c:249
+#: ../extensions/formhistory/formhistory.c:526
 #, c-format
 msgid Failed to open database: %s\n
 msgstr Errore nella connessione al database: %s\n
@@ -333,7 +333,7 @@ msgstr _Ignora
 msgid _Bookmark
 msgstr S_egnalibro
 
-#: ../midori/midori-app.c:1332 ../midori/midori-browser.c:6049
+#: ../midori/midori-app.c:1332 ../midori/midori-browser.c:6036
 msgid _Bookmarks
 msgstr Segnali_bri
 
@@ -350,7 +350,7 @@ msgid _Extensions
 msgstr _Estensioni
 
 #. i18n: Browsing history, visited web pages, closed tabs
-#: ../midori/midori-app.c:1336 ../midori/midori-browser.c:4619
+#: ../midori/midori-app.c:1336 ../midori/midori-browser.c:4606
 msgid _History
 msgstr C_ronologia
 
@@ -378,7 +378,7 @@ msgstr Plugin N_etscape
 msgid _Closed Tabs
 msgstr Schede _chiuse
 
-#: ../midori/midori-app.c:1343 ../midori/midori-browser.c:5206
+#: ../midori/midori-app.c:1343 ../midori/midori-browser.c:5193
 msgid New _Window
 msgstr N_uova finestra
 
@@ -403,12 +403,12 @@ msgstr Formato del segnalibro non riconosciuto.
 msgid Writing failed.
 msgstr Errore di scrittura.
 
-#: ../midori/midori-browser.c:326 ../midori/midori-browser.c:5288
-#: ../midori/midori-browser.c:5297
+#: ../midori/midori-browser.c:326 ../midori/midori-browser.c:5275
+#: ../midori/midori-browser.c:5284
 msgid Reload the current page
 msgstr Ricarica la pagina corrente
 
-#: ../midori/midori-browser.c:335 ../midori/midori-browser.c:5294
+#: ../midori/midori-browser.c:335 ../midori/midori-browser.c:5281
 msgid Stop loading the current page
 msgstr Interrompe il caricamento della pagina corrente
 
@@ -456,7 +456,7 @@ msgstr _Titolo:
 msgid _Address:
 msgstr _Indirizzo:
 
-#: ../midori/midori-browser.c:844 ../midori/midori-browser.c:4356
+#: ../midori/midori-browser.c:844 ../midori/midori-browser.c:4343
 msgid _Folder:
 msgstr _Cartella:
 
@@ -492,7 +492,7 @@ msgstr Spazio insufficiente per scaricare \%s\.
 msgid The file needs %s but only %s are left.
 msgstr Il file ha bisogno di %s ma sono rimasti solo %s.
 
-#: ../midori/midori-browser.c:1015 ../midori/midori-browser.c:4425
+#: ../midori/midori-browser.c:1015 ../midori/midori-browser.c:4412
 msgid Save file as
 msgstr Salva come
 
@@ -518,7 +518,8 @@ msgstr Errore di apertura dell'immagine
 
 #: ../midori/midori-browser.c:1363
 msgid Can not open selected image in a default viewer.
-msgstr Impossibile aprire l'immagine selezionata in un visualizzatore 
predefinito.
+msgstr 
+Impossibile aprire l'immagine selezionata in un visualizzatore predefinito.
 
 #: ../midori/midori-browser.c:1369
 msgid Error downloading the image!
@@ -532,11 +533,11 @@ msgstr Impossibile scaricare l'immagine selezionata.
 msgid Save file
 msgstr Salva file
 
-#: ../midori/midori-browser.c:2327
+#: ../midori/midori-browser.c:2326
 msgid Open file
 msgstr Apre file
 
-#: ../midori/midori-browser.c:2458
+#: ../midori/midori-browser.c:2457
 msgid 
 To use the above URI open a news aggregator. There is usually a menu or 
 button \New Subscription\, \New News Feed\ or similar.\n
@@ -550,141 +551,141 @@ msgstr 
 un aggregatore di notizie; al prossimo clic sull'icona del feed delle 
 notizie, questo verrà aggiunto automaticamente
 
-#: ../midori/midori-browser.c:2464 ../extensions/feed-panel/main.c:365
+#: ../midori/midori-browser.c:2463 ../extensions/feed-panel/main.c:365
 msgid New feed
 msgstr Nuovo feed
 
-#: ../midori/midori-browser.c:2507 

[Xfce4-commits] xfce4-settings:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 12caebc536fe3555804fed057340aa6958ebf116 (commit)
   from e49a92ae46fb9451d8d8a9c0eb1339d3c62d254d (commit)

commit 12caebc536fe3555804fed057340aa6958ebf116
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 11:10:21 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 330 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |  614 --
 1 files changed, 396 insertions(+), 218 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index ea65e05..c455876 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,20 +1,20 @@
 # Slovak translations for xfce package.
 # Copyright (C) 2009 THE xfce'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce package.
-# Tomáš Vadina kyber...@gmail.com, 2011.
-# 
+# Tomáš Vadina kyber...@gmail.com, 2011, 2012.
+#
 msgid 
 msgstr 
 Project-Id-Version: xfce4-settings\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-01-06 06:36+\n
-PO-Revision-Date: 2011-06-11 23:14+0100\n
+POT-Creation-Date: 2012-02-13 08:54+\n
+PO-Revision-Date: 2012-02-13 11:08+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
-Language-Team: Slovak sk-i...@lists.linux.sk\n
+Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
+Language: sk\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: sk\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 X-Poedit-Language: Slovak\n
 X-Poedit-Country: SLOVAKIA\n
@@ -228,51 +228,51 @@ msgstr pixely/s
 #: ../dialogs/accessibility-settings/main.c:43
 #: ../dialogs/appearance-settings/main.c:94
 #: ../dialogs/display-settings/main.c:102
-#: ../dialogs/keyboard-settings/main.c:38 ../dialogs/mouse-settings/main.c:97
+#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:97
 msgid Settings manager socket
 msgstr Soket správcu nastavení
 
 #: ../dialogs/accessibility-settings/main.c:43
 #: ../dialogs/appearance-settings/main.c:94
 #: ../dialogs/display-settings/main.c:102
-#: ../dialogs/keyboard-settings/main.c:38 ../dialogs/mouse-settings/main.c:97
+#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:97
 msgid SOCKET ID
 msgstr SOCKET ID
 
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:95
 #: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:98
-#: ../xfce4-settings-editor/main.c:43 ../xfsettingsd/main.c:77
-#: ../xfce4-settings-manager/main.c:39
+#: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:40
+#: ../dialogs/mouse-settings/main.c:98 ../xfce4-settings-editor/main.c:43
+#: ../xfsettingsd/main.c:77 ../xfce4-settings-manager/main.c:39
 msgid Version information
 msgstr Informácie o verzii
 
-#: ../dialogs/accessibility-settings/main.c:180
-#: ../dialogs/appearance-settings/main.c:956
-#: ../dialogs/display-settings/main.c:1040
-#: ../dialogs/keyboard-settings/main.c:63
-#: ../dialogs/mouse-settings/main.c:1504 ../xfce4-settings-editor/main.c:63
-#: ../xfsettingsd/main.c:173 ../xfce4-settings-manager/main.c:57
+#: ../dialogs/accessibility-settings/main.c:192
+#: ../dialogs/appearance-settings/main.c:966
+#: ../dialogs/display-settings/main.c:1043
+#: ../dialogs/keyboard-settings/main.c:76 ../dialogs/mime-settings/main.c:62
+#: ../dialogs/mouse-settings/main.c:1515 ../xfce4-settings-editor/main.c:63
+#: ../xfsettingsd/main.c:173 ../xfce4-settings-manager/main.c:60
 #, c-format
 msgid Type '%s --help' for usage.
 msgstr Informácie o použití získate príkazom '%s --help'
 
-#: ../dialogs/accessibility-settings/main.c:199
-#: ../dialogs/appearance-settings/main.c:975
-#: ../dialogs/display-settings/main.c:1059
-#: ../dialogs/keyboard-settings/main.c:79
-#: ../dialogs/mouse-settings/main.c:1523 ../xfce4-settings-editor/main.c:82
-#: ../xfsettingsd/main.c:189 ../xfce4-settings-manager/main.c:70
+#: ../dialogs/accessibility-settings/main.c:211
+#: ../dialogs/appearance-settings/main.c:985
+#: ../dialogs/display-settings/main.c:1062
+#: ../dialogs/keyboard-settings/main.c:92 ../dialogs/mime-settings/main.c:81
+#: ../dialogs/mouse-settings/main.c:1534 ../xfce4-settings-editor/main.c:82
+#: ../xfsettingsd/main.c:189 ../xfce4-settings-manager/main.c:76
 msgid The Xfce development team. All rights reserved.
 msgstr Vývojársky tím Xfce. Všetky práva vyhradené.
 
-#: ../dialogs/accessibility-settings/main.c:200
-#: ../dialogs/appearance-settings/main.c:976
-#: ../dialogs/display-settings/main.c:1060
-#: ../dialogs/keyboard-settings/main.c:80
-#: ../dialogs/mouse-settings/main.c:1524 ../xfce4-settings-editor/main.c:83
-#: ../xfsettingsd/main.c:190 ../xfce4-settings-manager/main.c:71
+#: ../dialogs/accessibility-settings/main.c:212

[Xfce4-commits] midori:master l10n: Updated Dutch (Flemish) (nl) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 51462b0748f7d2e8fe7e8bff566ad56bb06d496a (commit)
   from 35b11cad17f1f8ead05e4b3d6e9e111d08654279 (commit)

commit 51462b0748f7d2e8fe7e8bff566ad56bb06d496a
Author: Pjotr Anon pliniusmi...@gmail.com
Date:   Mon Feb 13 11:34:57 2012 +0100

l10n: Updated Dutch (Flemish) (nl) translation to 100%

New status: 653 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/nl.po |  454 +-
 1 files changed, 243 insertions(+), 211 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index f51e469..8e95c45 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,7 +8,7 @@ msgid 
 msgstr 
 Project-Id-Version: midori\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-01-28 12:39+\n
+POT-Creation-Date: 2012-02-13 05:39+\n
 PO-Revision-Date: 2011-09-08 12:02+0200\n
 Last-Translator: Emmo (assisted by Pjotr)\n
 Language-Team: Dutch (Flemish)\n
@@ -43,7 +43,7 @@ msgstr Midori Privé-surfen
 msgid Open a new private browsing window
 msgstr Open een nieuw privé-surfvenster
 
-#: ../data/midori-private.desktop.in.h:3 ../midori/midori-view.c:3991
+#: ../data/midori-private.desktop.in.h:3 ../midori/midori-view.c:3976
 msgid Private Browsing
 msgstr Privé-surfen
 
@@ -73,7 +73,7 @@ msgid Failed to clear history: %s\n
 msgstr Niet gelukt om geschiedenis te verwijderen: %s\n
 
 #: ../midori/main.c:438 ../midori/main.c:559
-#: ../extensions/formhistory/formhistory.c:249
+#: ../extensions/formhistory/formhistory.c:526
 #, c-format
 msgid Failed to open database: %s\n
 msgstr Kon gegevensbank niet openen: %s\n
@@ -333,7 +333,7 @@ msgstr _Negeren
 msgid _Bookmark
 msgstr _Bladwijzer
 
-#: ../midori/midori-app.c:1332 ../midori/midori-browser.c:6049
+#: ../midori/midori-app.c:1332 ../midori/midori-browser.c:6036
 msgid _Bookmarks
 msgstr _Bladwijzers
 
@@ -350,7 +350,7 @@ msgid _Extensions
 msgstr _Extensies
 
 #. i18n: Browsing history, visited web pages, closed tabs
-#: ../midori/midori-app.c:1336 ../midori/midori-browser.c:4619
+#: ../midori/midori-app.c:1336 ../midori/midori-browser.c:4606
 msgid _History
 msgstr _Geschiedenis
 
@@ -378,7 +378,7 @@ msgstr Netscape p_lugins
 msgid _Closed Tabs
 msgstr Ge_sloten tabbladen
 
-#: ../midori/midori-app.c:1343 ../midori/midori-browser.c:5206
+#: ../midori/midori-app.c:1343 ../midori/midori-browser.c:5193
 msgid New _Window
 msgstr Nieuw _venster
 
@@ -403,12 +403,12 @@ msgstr Onbekende bladwijzeropmaak.
 msgid Writing failed.
 msgstr Schrijven is mislukt.
 
-#: ../midori/midori-browser.c:326 ../midori/midori-browser.c:5288
-#: ../midori/midori-browser.c:5297
+#: ../midori/midori-browser.c:326 ../midori/midori-browser.c:5275
+#: ../midori/midori-browser.c:5284
 msgid Reload the current page
 msgstr De huidige pagina opnieuw laden
 
-#: ../midori/midori-browser.c:335 ../midori/midori-browser.c:5294
+#: ../midori/midori-browser.c:335 ../midori/midori-browser.c:5281
 msgid Stop loading the current page
 msgstr Stop met het laden van de huidige pagina
 
@@ -456,7 +456,7 @@ msgstr _Titel:
 msgid _Address:
 msgstr _Adres:
 
-#: ../midori/midori-browser.c:844 ../midori/midori-browser.c:4356
+#: ../midori/midori-browser.c:844 ../midori/midori-browser.c:4343
 msgid _Folder:
 msgstr _Map:
 
@@ -492,7 +492,7 @@ msgstr Er is niet voldoende schijfruimte om \%s\ binnen 
te halen.
 msgid The file needs %s but only %s are left.
 msgstr Het bestand heeft %s nodig maar slechts %s is over.
 
-#: ../midori/midori-browser.c:1015 ../midori/midori-browser.c:4425
+#: ../midori/midori-browser.c:1015 ../midori/midori-browser.c:4412
 msgid Save file as
 msgstr Bestand opslaan als
 
@@ -532,11 +532,11 @@ msgstr Kan de gekozen afbeelding niet binnenhalen.
 msgid Save file
 msgstr Bestand opslaan
 
-#: ../midori/midori-browser.c:2327
+#: ../midori/midori-browser.c:2326
 msgid Open file
 msgstr Bestand openen
 
-#: ../midori/midori-browser.c:2458
+#: ../midori/midori-browser.c:2457
 msgid 
 To use the above URI open a news aggregator. There is usually a menu or 
 button \New Subscription\, \New News Feed\ or similar.\n
@@ -551,139 +551,139 @@ msgstr 
 Nieuwsaggregator kiezen. De volgende keer dat u het pictogram van 
 nieuwsvoeding aanklikt, zal dit automatisch worden toegevoegd.
 
-#: ../midori/midori-browser.c:2464 ../extensions/feed-panel/main.c:365
+#: ../midori/midori-browser.c:2463 ../extensions/feed-panel/main.c:365
 msgid New feed
 msgstr Nieuwe voeding
 
-#: ../midori/midori-browser.c:2507 ../midori/midori-browser.c:5357
+#: ../midori/midori-browser.c:2506 ../midori/midori-browser.c:5344
 #: ../panels/midori-bookmarks.c:426
 msgid Add a new bookmark
 msgstr Nieuwe bladwijzer toevoegen
 
-#: ../midori/midori-browser.c:3004 ../midori/midori-searchaction.c:488
+#: ../midori/midori-browser.c:3005 ../midori/midori-searchaction.c:488
 msgid Empty
 msgstr Leeg
 
-#: ../midori/midori-browser.c:3500
+#: ../midori/midori-browser.c:3501
 msgid Toggle 

[Xfce4-commits] exo:master l10n: Updated Dutch (Flemish) (nl) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to eaa809afca5430cbc42625db96b26b0818a089f0 (commit)
   from 8fef6d753865f8918873b525f9c7e673cf665284 (commit)

commit eaa809afca5430cbc42625db96b26b0818a089f0
Author: Pjotr Anon pliniusmi...@gmail.com
Date:   Mon Feb 13 11:35:31 2012 +0100

l10n: Updated Dutch (Flemish) (nl) translation to 100%

New status: 274 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/nl.po |  113 ++---
 1 files changed, 63 insertions(+), 50 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 04b2dfb..e40915e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,12 +3,12 @@
 # This file is distributed under the same license as the exo package.
 # Stephan Arts psy...@gmail.com, 2006.
 # Pjotr, 2011.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: exo\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-09-08 16:00+\n
+POT-Creation-Date: 2012-02-13 05:03+\n
 PO-Revision-Date: 2011-09-08 15:05+0200\n
 Last-Translator: Pjotr\n
 Language-Team: Dutch (Flemish)\n
@@ -538,7 +538,7 @@ msgstr   --strip-comments  Verwijder commentaren uit 
XML-bestanden\n
 msgid   --strip-content   Remove node contents from XML files\n
 msgstr   --strip-content   Verwijder node-informatie uit XML-bestanden\n
 
-#: ../exo-csource/main.c:304 ../exo-desktop-item-edit/main.c:176
+#: ../exo-csource/main.c:304 ../exo-desktop-item-edit/main.c:193
 #: ../exo-open/main.c:483
 #, c-format
 msgid 
@@ -554,7 +554,7 @@ msgstr 
 Geschreven door Benedikt Meurer be...@xfce.org.\n
 \n
 
-#: ../exo-csource/main.c:308 ../exo-desktop-item-edit/main.c:180
+#: ../exo-csource/main.c:308 ../exo-desktop-item-edit/main.c:197
 #: ../exo-open/main.c:487
 #, c-format
 msgid 
@@ -570,7 +570,7 @@ msgstr 
 in het %s bronpakket.\n
 \n
 
-#: ../exo-csource/main.c:312 ../exo-desktop-item-edit/main.c:184
+#: ../exo-csource/main.c:312 ../exo-desktop-item-edit/main.c:201
 #: ../exo-open/main.c:491
 #, c-format
 msgid Please report bugs to %s.\n
@@ -616,37 +616,44 @@ msgstr Shell scripts
 msgid Create Launcher b%s/b
 msgstr Maak starter b%s/b
 
-#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:297
 msgid _Name:
 msgstr _Naam:
 
-#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:313
 msgid C_omment:
 msgstr _Opmerking:
 
-#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:329
 msgid Comm_and:
 msgstr Opdr_acht:
 
-#. TRANSLATORS: Label in Create Link dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in Create Link dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:344
 msgid _URL:
 msgstr _URL:
 
-#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in Create Launcher dialog, make sure to avoid mnemonic
+#. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid Working _Directory:
 msgstr _Werkmap:
 
-#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in Create Launcher/Create Link dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:389
 msgid _Icon:
 msgstr _Pictogram:
 
-#. TRANSLATORS: Label for the icon button in Create Launcher/Create Link 
dialog if no icon selected
+#. TRANSLATORS: Label for the icon button in Create Launcher/Create Link
+#. dialog if no icon selected
 #. setup a label to tell that no icon was selected
 #: ../exo-desktop-item-edit/exo-die-editor.c:406
 #: ../exo-desktop-item-edit/exo-die-editor.c:1233
@@ -657,9 +664,11 @@ msgstr Geen pictogram
 msgid Options:
 msgstr Opties:
 
-#. TRANSLATORS: Check button label in Create Launcher dialog, make sure to 
avoid mnemonic conflicts
-#. *  and sync your translations with the translations in Thunar 
and xfce4-panel.
-#.
+#. TRANSLATORS: Check button label in Create Launcher dialog, make sure to
+#. avoid mnemonic conflicts
+#. *  and sync your translations with the translations in Thunar
+#. and xfce4-panel.
+#. 
 #: ../exo-desktop-item-edit/exo-die-editor.c:421
 msgid Use _startup notification
 msgstr Gebruik op_startnotificatie
@@ -674,9 +683,11 @@ msgstr 
 wordt uitgevoerd vanuit de bestandbeheerder of het menu. Niet elke 
 toepassing ondersteunt opstartmelding.
 
-#. TRANSLATORS: Check button label in Create 

[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Start of slovak translation

2012-02-13 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 280517b785fa8abc42b2e1dd6eb953fc8fa7d37c (commit)
   from 473f6d9be6030d3462d6ab27b6896bae494af564 (commit)

commit 280517b785fa8abc42b2e1dd6eb953fc8fa7d37c
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 12:59:22 2012 +0100

l10n: Start of slovak translation

New status: 10 messages complete with 0 fuzzies and 168 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 doc/manual/po/{ja.po = sk.po} |   33 +++--
 1 files changed, 19 insertions(+), 14 deletions(-)

diff --git a/doc/manual/po/ja.po b/doc/manual/po/sk.po
similarity index 97%
copy from doc/manual/po/ja.po
copy to doc/manual/po/sk.po
index 300e949..9f53078 100644
--- a/doc/manual/po/ja.po
+++ b/doc/manual/po/sk.po
@@ -1,15 +1,18 @@
+#
+# Tomáš Vadina kyber...@gmail.com, 2012.
+#
 msgid 
 msgstr 
-Project-Id-Version: xfce-utils 4.7.0git-44aa669\n
+Project-Id-Version: xfce-utils.xfce-4-8-docs\n
 POT-Creation-Date: 2010-08-28 16:12+0200\n
-PO-Revision-Date: 2010-11-04 16:19+0900\n
-Last-Translator:  cabezon.hashim...@gmail.com\n
-Language-Team: Japanese\n
+PO-Revision-Date: 2012-02-13 12:57+0100\n
+Last-Translator: Tomáš Vadina kyber...@gmail.com\n
+Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: ja\n
-Plural-Forms: nplurals=1; plural=0;\n
+Language: sk\n
+Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
@@ -17,12 +20,13 @@ msgstr 
 msgid 
 @@image: 'images/default-session.png'; md5=44695a28b431354c5e7ae9d172451007
 msgstr 
+@@image: 'images/default-session.png'; md5=44695a28b431354c5e7ae9d172451007
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: xfce-utils.xml:820(None)
 msgid @@image: 'images/run-dialog.png'; md5=f2c3c1e622304bbd44f951f8e5ac7eee
-msgstr 
+msgstr @@image: 'images/run-dialog.png'; md5=f2c3c1e622304bbd44f951f8e5ac7eee
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
@@ -30,14 +34,15 @@ msgstr 
 msgid 
 @@image: 'images/about-dialog.png'; md5=01d189f346aec15d60b9e13632799847
 msgstr 
+@@image: 'images/about-dialog.png'; md5=01d189f346aec15d60b9e13632799847
 
 #: xfce-utils.xml:14(title)
 msgid The Xfce Desktop Environment
-msgstr 
+msgstr Pracovné prostredie Xfce
 
 #: xfce-utils.xml:21(title)
 msgid Xfce Documentation
-msgstr 
+msgstr Dokumentácia Xfce
 
 #: xfce-utils.xml:23(para)
 msgid 
@@ -48,15 +53,15 @@ msgstr 
 
 #: xfce-utils.xml:29(title)
 msgid Guides
-msgstr 
+msgstr Príručky
 
 #: xfce-utils.xml:32(link) xfce-utils.xml:93(title)
 msgid Xfce User Guide
-msgstr 
+msgstr Príručka používateľa Xfce
 
 #: xfce-utils.xml:37(title)
 msgid Manuals
-msgstr 
+msgstr Návody
 
 #: xfce-utils.xml:38(para)
 msgid 
@@ -66,7 +71,7 @@ msgstr 
 
 #: xfce-utils.xml:40(ulink) xfce-utils.xml:238(term)
 msgid Panel
-msgstr 
+msgstr Panel
 
 #: xfce-utils.xml:41(ulink) xfce-utils.xml:290(term)
 msgid Window Manager
@@ -1003,4 +1008,4 @@ msgstr 
 #. Put one translator per line, in the form of NAME EMAIL, YEAR1, YEAR2
 #: xfce-utils.xml:0(None)
 msgid translator-credits
-msgstr 
+msgstr Tomáš Vadina kyber...@gmail.com, 2012
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:xfce-4.8 l10n: Updated Slovak (sk) translation to 23%

2012-02-13 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 780d7c46f8abb36617e9b8d63833c5003088592d (commit)
   from 280517b785fa8abc42b2e1dd6eb953fc8fa7d37c (commit)

commit 780d7c46f8abb36617e9b8d63833c5003088592d
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 13:22:53 2012 +0100

l10n: Updated Slovak (sk) translation to 23%

New status: 42 messages complete with 0 fuzzies and 136 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 doc/manual/po/sk.po |   66 +-
 1 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/doc/manual/po/sk.po b/doc/manual/po/sk.po
index 9f53078..3106a93 100644
--- a/doc/manual/po/sk.po
+++ b/doc/manual/po/sk.po
@@ -5,7 +5,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce-utils.xfce-4-8-docs\n
 POT-Creation-Date: 2010-08-28 16:12+0200\n
-PO-Revision-Date: 2012-02-13 12:57+0100\n
+PO-Revision-Date: 2012-02-13 13:22+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
 Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
 MIME-Version: 1.0\n
@@ -99,11 +99,11 @@ msgstr 
 
 #: xfce-utils.xml:54(year) xfce-utils.xml:763(year)
 msgid 2006
-msgstr 
+msgstr 2006
 
 #: xfce-utils.xml:55(holder) xfce-utils.xml:763(holder)
 msgid Jasper Huijsmans
-msgstr 
+msgstr Jasper Huijsmans
 
 #: xfce-utils.xml:59(para) xfce-utils.xml:771(para)
 msgid 
@@ -117,27 +117,27 @@ msgstr 
 
 #: xfce-utils.xml:71(firstname) xfce-utils.xml:784(firstname)
 msgid Jasper
-msgstr 
+msgstr Jasper
 
 #: xfce-utils.xml:72(surname) xfce-utils.xml:784(surname)
 msgid Huijsmans
-msgstr 
+msgstr Huijsmans
 
 #: xfce-utils.xml:75(email) xfce-utils.xml:786(email)
 msgid jas...@xfce.org
-msgstr 
+msgstr jas...@xfce.org
 
 #: xfce-utils.xml:80(firstname) xfce-utils.xml:791(firstname)
 msgid Benedikt
-msgstr 
+msgstr Benedikt
 
 #: xfce-utils.xml:81(surname) xfce-utils.xml:791(surname)
 msgid Meurer
-msgstr 
+msgstr Meurer
 
 #: xfce-utils.xml:84(email)
 msgid be...@xfce.org
-msgstr 
+msgstr be...@xfce.org
 
 #: xfce-utils.xml:89(releaseinfo)
 msgid This manual describes version @PACKAGE_VERSION@ of Xfce.
@@ -532,7 +532,7 @@ msgstr 
 
 #: xfce-utils.xml:476(term)
 msgid libxfce4util
-msgstr 
+msgstr libxfce4util
 
 #: xfce-utils.xml:478(para)
 msgid Library with non-graphical helper functions.
@@ -540,7 +540,7 @@ msgstr 
 
 #: xfce-utils.xml:483(term)
 msgid libxfcegui4
-msgstr 
+msgstr libxfcegui4
 
 #: xfce-utils.xml:485(para)
 msgid Widget library and X Window System interaction.
@@ -548,7 +548,7 @@ msgstr 
 
 #: xfce-utils.xml:490(term)
 msgid libexo
-msgstr 
+msgstr libexo
 
 #: xfce-utils.xml:492(para)
 msgid 
@@ -558,7 +558,7 @@ msgstr 
 
 #: xfce-utils.xml:499(term)
 msgid libxfce4mcs
-msgstr 
+msgstr libxfce4mcs
 
 #: xfce-utils.xml:501(para)
 msgid Settings management library used by many Xfce components.
@@ -566,7 +566,7 @@ msgstr 
 
 #: xfce-utils.xml:507(term)
 msgid xfce-mcs-manager
-msgstr 
+msgstr xfce-mcs-manager
 
 #: xfce-utils.xml:509(para)
 msgid 
@@ -577,7 +577,7 @@ msgstr 
 
 #: xfce-utils.xml:518(term)
 msgid xfce-mcs-plugins
-msgstr 
+msgstr xfce-mcs-plugins
 
 #: xfce-utils.xml:520(para)
 msgid 
@@ -589,7 +589,7 @@ msgstr 
 
 #: xfce-utils.xml:529(term)
 msgid xfce4-session
-msgstr 
+msgstr xfce4-session
 
 #: xfce-utils.xml:531(para)
 msgid 
@@ -601,7 +601,7 @@ msgstr 
 
 #: xfce-utils.xml:540(term)
 msgid xfwm4
-msgstr 
+msgstr xfwm4
 
 #: xfce-utils.xml:542(para)
 msgid 
@@ -611,7 +611,7 @@ msgstr 
 
 #: xfce-utils.xml:550(term)
 msgid xfce4-panel
-msgstr 
+msgstr xfce4-panel
 
 #: xfce-utils.xml:552(para)
 msgid 
@@ -621,7 +621,7 @@ msgstr 
 
 #: xfce-utils.xml:559(term)
 msgid xfdesktop
-msgstr 
+msgstr xfdesktop
 
 #: xfce-utils.xml:561(para)
 msgid 
@@ -632,7 +632,7 @@ msgstr 
 
 #: xfce-utils.xml:570(term)
 msgid xfce-utils
-msgstr 
+msgstr xfce-utils
 
 #: xfce-utils.xml:572(para)
 msgid 
@@ -643,7 +643,7 @@ msgstr 
 
 #: xfce-utils.xml:580(term)
 msgid Thunar
-msgstr 
+msgstr Thunar
 
 #: xfce-utils.xml:582(para)
 msgid A fast and efficient file manager.
@@ -651,7 +651,7 @@ msgstr 
 
 #: xfce-utils.xml:587(term)
 msgid xfprint
-msgstr 
+msgstr xfprint
 
 #: xfce-utils.xml:589(para)
 msgid 
@@ -662,7 +662,7 @@ msgstr 
 
 #: xfce-utils.xml:597(term)
 msgid xfce4-appfinder
-msgstr 
+msgstr xfce4-appfinder
 
 #: xfce-utils.xml:599(para)
 msgid 
@@ -672,7 +672,7 @@ msgstr 
 
 #: xfce-utils.xml:606(term)
 msgid orage
-msgstr 
+msgstr orage
 
 #: xfce-utils.xml:608(para)
 msgid Simple calendar application with reminders.
@@ -680,7 +680,7 @@ msgstr 
 
 #: xfce-utils.xml:613(term)
 msgid gtk-xfce-engine-2
-msgstr 
+msgstr gtk-xfce-engine-2
 
 #: xfce-utils.xml:615(para)
 msgid 
@@ -690,7 +690,7 @@ msgstr 
 
 #: xfce-utils.xml:622(term)
 msgid xfce4-icon-theme
-msgstr 
+msgstr xfce4-icon-theme
 
 #: xfce-utils.xml:624(para)
 msgid Default icon theme for Xfce, called emphasisRodent/emphasis.
@@ -745,7 +745,7 @@ msgstr 
 #: xfce-utils.xml:672(programlisting)
 #, no-wrap
 msgid 

[Xfce4-commits] xfwm4:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 8d700b2283bb1bb3cdcc005ff839a11d5d09b228 (commit)
   from 6ed2575f92173ac40cb0f04bd3a730cb618d9d3d (commit)

commit 8d700b2283bb1bb3cdcc005ff839a11d5d09b228
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 14:32:55 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 232 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |  143 +-
 1 files changed, 76 insertions(+), 67 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index ba8d01d..7dcc795 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,15 +4,16 @@
 # Juraj Brosz j...@jurajbrosz.info, 2004.
 # Stefan Miklosovic mikloso...@gmail.com, 2008.
 # Robert Hartl hartl.rob...@gmail.com, 2009, 2010.
-# Tomáš Vadina kyber...@gmail.com, 2011.
+# Tomáš Vadina kyber...@gmail.com, 2011, 2012.
+#
 msgid 
 msgstr 
 Project-Id-Version: xfwm4 4.8.1\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-13 09:01+0100\n
-PO-Revision-Date: 2011-07-07 15:07+0100\n
+POT-Creation-Date: 2012-02-13 10:39+\n
+PO-Revision-Date: 2012-02-13 14:32+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
-Language-Team: Slovak sk-i...@lists.linux.sk\n
+Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
 Language: sk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -37,31 +38,31 @@ msgstr Varovanie
 msgid None
 msgstr Nič
 
-#: ../settings-dialogs/tweaks-settings.c:421
+#: ../settings-dialogs/tweaks-settings.c:436
 msgid Session manager socket
 msgstr Soket správcu sedenia
 
-#: ../settings-dialogs/tweaks-settings.c:421
-#: ../settings-dialogs/workspace-settings.c:370
-#: ../settings-dialogs/xfwm4-settings.c:311
+#: ../settings-dialogs/tweaks-settings.c:436
+#: ../settings-dialogs/workspace-settings.c:380
+#: ../settings-dialogs/xfwm4-settings.c:315
 msgid SOCKET ID
 msgstr SOCKET ID
 
-#: ../settings-dialogs/tweaks-settings.c:422
-#: ../settings-dialogs/workspace-settings.c:371
-#: ../settings-dialogs/xfwm4-settings.c:313
+#: ../settings-dialogs/tweaks-settings.c:437
+#: ../settings-dialogs/workspace-settings.c:381
+#: ../settings-dialogs/xfwm4-settings.c:317
 msgid Version information
 msgstr Informácia o verzií
 
-#: ../settings-dialogs/tweaks-settings.c:440
-#: ../settings-dialogs/workspace-settings.c:388
-#: ../settings-dialogs/xfwm4-settings.c:943
+#: ../settings-dialogs/tweaks-settings.c:455
+#: ../settings-dialogs/workspace-settings.c:398
+#: ../settings-dialogs/xfwm4-settings.c:964
 msgid .
 msgstr .
 
-#: ../settings-dialogs/tweaks-settings.c:444
-#: ../settings-dialogs/workspace-settings.c:392
-#: ../settings-dialogs/xfwm4-settings.c:947
+#: ../settings-dialogs/tweaks-settings.c:459
+#: ../settings-dialogs/workspace-settings.c:402
+#: ../settings-dialogs/xfwm4-settings.c:968
 #, c-format
 msgid 
 %s: %s\n
@@ -76,12 +77,12 @@ msgstr 
 msgid Workspace %d
 msgstr Pracovná plocha %d
 
-#: ../settings-dialogs/workspace-settings.c:280
+#: ../settings-dialogs/workspace-settings.c:274
 msgid Workspace Name
 msgstr Názov pracovnej plochy
 
-#: ../settings-dialogs/workspace-settings.c:370
-#: ../settings-dialogs/xfwm4-settings.c:311
+#: ../settings-dialogs/workspace-settings.c:380
+#: ../settings-dialogs/xfwm4-settings.c:315
 msgid Settings manager socket
 msgstr Nastavenia správcu soketu
 
@@ -106,12 +107,12 @@ msgid Window Manager Tweaks
 msgstr Pokročilé nastavenie správcu okien
 
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:4
 msgid Set number and names of workspaces
 msgstr Nastavte počet pracovných plôch
 
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:6
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
 msgid Workspaces
 msgstr Pracovné plochy
 
@@ -513,124 +514,140 @@ msgid Move window to workspace 12
 msgstr Presunúť okno na pracovnú plochu 12
 
 #: ../settings-dialogs/xfwm4-settings.c:281
+msgid Tile window to the top
+msgstr Umiestniť okno nahor
+
+#: ../settings-dialogs/xfwm4-settings.c:282
+msgid Tile window to the bottom
+msgstr Umiestniť okno nadol
+
+#: ../settings-dialogs/xfwm4-settings.c:283
+msgid Tile window to the left
+msgstr Umiestniť okno naľavo
+
+#: ../settings-dialogs/xfwm4-settings.c:284
+msgid Tile window to the right
+msgstr Umiestniť okno napravo
+
+#: ../settings-dialogs/xfwm4-settings.c:285
 msgid Show desktop
 msgstr Zobraziť pracovnú plochu
 
-#: ../settings-dialogs/xfwm4-settings.c:282
+#: ../settings-dialogs/xfwm4-settings.c:286
 msgid Upper workspace
 msgstr Vrchná pracovná plocha
 
-#: ../settings-dialogs/xfwm4-settings.c:283
+#: ../settings-dialogs/xfwm4-settings.c:287
 msgid Bottom workspace
 msgstr Spodná pracovná plocha
 
-#: ../settings-dialogs/xfwm4-settings.c:284
+#: 

[Xfce4-commits] xfce4-panel:xfce-4.8 l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 8caf0c3fe1d86dd426748b2fcdfb595e6f16969e (commit)
   from a96c7d1c9f76555774a2c0cbcdf3e29d48dd1f51 (commit)

commit 8caf0c3fe1d86dd426748b2fcdfb595e6f16969e
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 14:40:04 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 347 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |  210 +++---
 1 files changed, 145 insertions(+), 65 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index 9ce0a49..cb9a9ba 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,26 +4,27 @@
 # Juraj Brosz j...@jurajbrosz.info, 2004.
 # Roman Moravcik roman.morav...@gmail.com, 2006.
 # Robert Hartl hartl.rob...@gmail.com, 2009, 2010.
-# Tomáš Vadina kyber...@gmail.com, 2011.
-# 
+# Tomáš Vadina kyber...@gmail.com, 2011, 2012.
+#
 msgid 
 msgstr 
 Project-Id-Version: xfce4-panel 4.8.3\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-08-09 16:36+\n
-PO-Revision-Date: 2011-07-12 10:37+0100\n
+POT-Creation-Date: 2012-02-13 08:18+\n
+PO-Revision-Date: 2012-02-13 14:38+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
-Language-Team: Slovak xfce-i...@xfce.org\n
+Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
+Language: sk\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: sk\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 X-Poedit-Language: Slovak\n
 X-Poedit-Country: SLOVAKIA\n
 
 #: ../panel-desktop-handler.desktop.in.h:1
-msgid Add a new launcher to the panel based on the information of this 
desktop file
+msgid 
+Add a new launcher to the panel based on the information of this desktop file
 msgstr Pridať na panel nový spúšťač založený na informáciách zo súboru plochy
 
 #: ../panel-desktop-handler.desktop.in.h:2
@@ -45,8 +46,12 @@ msgid _Read Online
 msgstr Čítať _online
 
 #: ../common/panel-utils.c:158
-msgid You can read the user manual online. This manual may however not 
exactly match your panel version.
-msgstr Môžte si prečítať manuál online. Tento manuál však nemusí presne 
zodpovedať vašej verzie panelu.
+msgid 
+You can read the user manual online. This manual may however not exactly 
+match your panel version.
+msgstr 
+Môžte si prečítať manuál online. Tento manuál však nemusí presne zodpovedať 
+vašej verzie panelu.
 
 #: ../common/panel-utils.c:160
 msgid The user manual is not installed on your computer
@@ -193,8 +198,12 @@ msgid Failed to send D-Bus message
 msgstr Nepodarilo sa odoslať správu D-Bus
 
 #: ../panel/main.c:416
-msgid Do you want to start the panel? If you do, make sure you save the 
session on logout, so the panel is automatically started the next time you 
login.
-msgstr Chcete spustiť panel? Pokiaľ áno, uistite sa, že ste uložili reláciu 
pri odhlásení, aby sa panel automaticky spustil počas ďalšieho prihlásenia.
+msgid 
+Do you want to start the panel? If you do, make sure you save the session on 
+logout, so the panel is automatically started the next time you login.
+msgstr 
+Chcete spustiť panel? Pokiaľ áno, uistite sa, že ste uložili reláciu pri 
+odhlásení, aby sa panel automaticky spustil počas ďalšieho prihlásenia.
 
 #: ../panel/main.c:419 ../panel/main.c:433
 #, c-format
@@ -206,8 +215,12 @@ msgid Failed to launch the migration application
 msgstr Nepodarilo sa spustiť aplikáciu pre migráciu
 
 #: ../panel/panel-application.c:1585 ../plugins/actions/actions.c:421
-msgid You have started X without session manager. Clicking Quit will close 
the X server.
-msgstr Spustili ste X server bez správcu relácie. Kliknutím na tlačidlo 
Ukončiť zatvoríte X server.
+msgid 
+You have started X without session manager. Clicking Quit will close the X 
+server.
+msgstr 
+Spustili ste X server bez správcu relácie. Kliknutím na tlačidlo Ukončiť 
+zatvoríte X server.
 
 #: ../panel/panel-application.c:1586 ../plugins/actions/actions.c:422
 msgid Are you sure you want to quit the panel?
@@ -219,13 +232,18 @@ msgid Failed to execute command \%s\
 msgstr Nepodarilo sa spustiť príkaz „%s“
 
 #: ../panel/panel-dbus-client.c:208
-msgid Invalid plugin event syntax specified. Use 
PLUGIN-NAME:NAME[:TYPE:VALUE].
-msgstr Bola zadaná neplatná syntax udalosti zásuvného modulu. Použite 
NÁZOV-ZÁSUVNÉHO-MODULU:NÁZOV[:TYP:HODNOTA].
+msgid 
+Invalid plugin event syntax specified. Use PLUGIN-NAME:NAME[:TYPE:VALUE].
+msgstr 
+Bola zadaná neplatná syntax udalosti zásuvného modulu. Použite NÁZOV-
+ZÁSUVNÉHO-MODULU:NÁZOV[:TYP:HODNOTA].
 
 #: ../panel/panel-dbus-client.c:241
 #, c-format
-msgid Invalid hint type \%s\. Valid types are bool, double, int, string and 
uint.
-msgstr Neplatný typ tipu \%s\. Platnými typmi sú bool, double, int, string 
a uint.
+msgid 
+Invalid hint type \%s\. Valid types are bool, 

[Xfce4-commits] xfce4-panel:master l10n: Updated Slovak (sk) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 7e70fd12579df33db80159a98ad9996c6247915f (commit)
   from 84222f586bf004343cec20687c18267ac642c0d6 (commit)

commit 7e70fd12579df33db80159a98ad9996c6247915f
Author: Tomáš Vadina kyber...@gmail.com
Date:   Mon Feb 13 14:40:18 2012 +0100

l10n: Updated Slovak (sk) translation to 100%

New status: 380 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/sk.po |  149 +
 1 files changed, 71 insertions(+), 78 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index a401651..4d0cf42 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,20 +4,20 @@
 # Juraj Brosz j...@jurajbrosz.info, 2004.
 # Roman Moravcik roman.morav...@gmail.com, 2006.
 # Robert Hartl hartl.rob...@gmail.com, 2009, 2010.
-# Tomáš Vadina kyber...@gmail.com, 2011.
-# 
+# Tomáš Vadina kyber...@gmail.com, 2011, 2012.
+#
 msgid 
 msgstr 
 Project-Id-Version: xfce4-panel 4.8.3\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-01-06 05:54+\n
-PO-Revision-Date: 2011-11-02 13:39+0100\n
+POT-Creation-Date: 2012-02-13 08:15+\n
+PO-Revision-Date: 2012-02-13 14:38+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
-Language-Team: slovenčina sk-i...@lists.linux.sk\n
+Language-Team: slovenčina slovenska-lokalizacia-x...@googlegroups.com\n
+Language: sk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
-Content-Transfer-Encoding: 8bits\n
-Language: sk\n
+Content-Transfer-Encoding: 8bit\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 X-Poedit-Language: Slovak\n
 X-Poedit-Country: SLOVAKIA\n
@@ -41,36 +41,15 @@ msgstr Prispôsobiť panel
 msgid Panel
 msgstr Panel
 
-#: ../common/panel-utils.c:157
-msgid _Read Online
-msgstr Čítať _online
-
-#: ../common/panel-utils.c:158
-msgid 
-You can read the user manual online. This manual may however not exactly 
-match your panel version.
-msgstr 
-Môžte si prečítať manuál online. Tento manuál však nemusí presne zodpovedať 
-vašej verzii panela.
-
-#: ../common/panel-utils.c:160
-msgid The user manual is not installed on your computer
-msgstr Používateľská príručka nie je nainštalovaná na vašom počítači
-
-#. display an error message to the user
-#: ../common/panel-utils.c:175
-msgid Failed to open the documentation browser
-msgstr Nepodarilo sa otvoriť prehliadač dokumentácie
-
 #. I18N: %s is the name of the plugin
 #: ../libxfce4panel/xfce-panel-plugin.c:1037
-#: ../panel/panel-preferences-dialog.c:1078
+#: ../panel/panel-preferences-dialog.c:1089
 #, c-format
 msgid Are you sure that you want to remove \%s\?
 msgstr Ste si istí, že chcete odstrániť „%s“?
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1042
-#: ../panel/panel-preferences-dialog.c:1081
+#: ../panel/panel-preferences-dialog.c:1092
 msgid If you remove the item from the panel, it is permanently lost.
 msgstr Ak odstránite položku z panela, bude navždy stratená.
 
@@ -98,43 +77,43 @@ msgstr _Nastavenia panela...
 msgid Log _Out
 msgstr _Odhlásiť
 
-#: ../panel/main.c:78
+#: ../panel/main.c:79
 msgid Show the 'Panel Preferences' dialog
 msgstr Zobrazí dialógové okno „Prispôsobiť panel“
 
-#: ../panel/main.c:78 ../panel/main.c:79
+#: ../panel/main.c:79 ../panel/main.c:80
 msgid PANEL-NUMBER
 msgstr PANEL-ČÍSLO
 
-#: ../panel/main.c:79
+#: ../panel/main.c:80
 msgid Show the 'Add New Items' dialog
 msgstr Zobrazí dialógové okno „Pridať nové položky“
 
-#: ../panel/main.c:80
+#: ../panel/main.c:81
 msgid Save the panel configuration
 msgstr Uloží konfiguráciu panela
 
-#: ../panel/main.c:81
+#: ../panel/main.c:82
 msgid Add a new plugin to the panel
 msgstr Pridá nový zásuvný modul na panel
 
-#: ../panel/main.c:81
+#: ../panel/main.c:82
 msgid PLUGIN-NAME
 msgstr NÁZOV-ZÁSUVNÉHO-MODULU
 
-#: ../panel/main.c:82
+#: ../panel/main.c:83
 msgid Restart the running panel instance
 msgstr Reštartuje bežiacu inštanciu panela
 
-#: ../panel/main.c:83
+#: ../panel/main.c:84
 msgid Quit the running panel instance
 msgstr Ukončí bežiacu inštanciu panela
 
-#: ../panel/main.c:84
+#: ../panel/main.c:85
 msgid Do not wait for a window manager on startup
 msgstr Nečakať na správcu okien pri spúšťaní
 
-#: ../panel/main.c:85
+#: ../panel/main.c:86
 #: ../plugins/applicationsmenu/xfce4-popup-applicationsmenu.sh:33
 #: ../plugins/directorymenu/xfce4-popup-directorymenu.sh:33
 #: ../plugins/windowmenu/xfce4-popup-windowmenu.sh:33
@@ -142,62 +121,62 @@ msgid Print version information and exit
 msgstr Zobrazí informáciu o verzii a ukončí sa
 
 #. parse context options
-#: ../panel/main.c:232
+#: ../panel/main.c:234
 msgid [ARGUMENTS...]
 msgstr [PARAMETRE...]
 
-#: ../panel/main.c:239
+#: ../panel/main.c:241
 #, c-format
 msgid Type \%s --help\ for usage.
 msgstr Informácie pre použitie získate príkazom „%s --help“.
 
-#: ../panel/main.c:258
+#: ../panel/main.c:260
 msgid The Xfce development team. All rights reserved.
 msgstr Tím vývojárov Xfce. Všetky práva 

[Xfce4-commits] www:master l10n: Updated Italian (it) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 9da63a6e2608b3eb60835d2df9f8ece7875f87e9 (commit)
   from fd1778fcabb1753be2c2b186834995f2ac0f7700 (commit)

commit 9da63a6e2608b3eb60835d2df9f8ece7875f87e9
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Feb 13 14:56:30 2012 +0100

l10n: Updated Italian (it) translation to 100%

New status: 673 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 lib/po/it.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/po/it.po b/lib/po/it.po
index 7b50b9a..bbe297f 100644
--- a/lib/po/it.po
+++ b/lib/po/it.po
@@ -3406,7 +3406,7 @@ msgid 
 can ask the new member to submit the work for review. This process is 
 important whenever the translations have to use a standard vocabulary for 
 instance.
-msgstr Il coordinatore non dovrebbe accettare nuovi traduttori senza prima 
informarsi sul suo coinvolgimento in altri progetti. Nel caso in cui non si sia 
certi delle buone capacità di traduzione, è possibile controllare il nuovo 
account di transifex a avviare una breve discussione via email. A questo punto 
il coordinatore potrà accettare il nuovo membro che otterrà la capacità di 
inviare le modifiche direttamente nel repository, altrimenti il coordinatore 
potrà richiedere al nuovo membro di inviargli il lavoro per una revisione. 
Questo processo è importante per mantenere l'uniformità delle traduzioni per 
tutti i componenti dell'interfaccia.
+msgstr Il coordinatore non dovrebbe accettare nuovi traduttori senza prima 
informarsi sul loro coinvolgimento in altri progetti. Nel caso in cui non si 
sia certi delle capacità di traduzione, è possibile controllare il nuovo 
account di Transifex e avviare una breve discussione via email. A questo punto 
il coordinatore potrà accettare il nuovo membro che otterrà la capacità di 
inviare le modifiche direttamente nel repository, altrimenti il coordinatore 
potrà richiedere al nuovo membro di inviargli il lavoro per una revisione. 
Questo processo è importante per mantenere l'uniformità delle traduzioni per 
tutti i componenti dell'ambiente grafico.
 
 #: getinvolved/translation.php:78
 msgid 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master l10n: Updated Japanese (ja) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to e268ffecfc8b668aafb92eaf27452df2712841cf (commit)
   from 51462b0748f7d2e8fe7e8bff566ad56bb06d496a (commit)

commit e268ffecfc8b668aafb92eaf27452df2712841cf
Author: Masato Hashimoto hash...@xfce.org
Date:   Mon Feb 13 15:36:44 2012 +0100

l10n: Updated Japanese (ja) translation to 100%

New status: 653 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/ja.po |  466 +-
 1 files changed, 247 insertions(+), 219 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 8f9d9c8..a16c185 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,8 +7,8 @@ msgid 
 msgstr 
 Project-Id-Version: Midori 0.1.9\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-02-05 16:42+0900\n
-PO-Revision-Date: 2012-02-05 17:30+0900\n
+POT-Creation-Date: 2012-02-13 23:24+0900\n
+PO-Revision-Date: 2012-02-13 23:34+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese xfce-users...@ml.fdiary.net\n
 Language: ja\n
@@ -42,7 +42,7 @@ msgid Midori Private Browsing
 msgstr Midori プライベートブラウジング
 
 #: ../data/midori-private.desktop.in.h:2
-#: ../midori/midori-view.c:4013
+#: ../midori/midori-view.c:3976
 msgid Private Browsing
 msgstr プライベートブラウジング
 
@@ -79,7 +79,7 @@ msgstr 履歴のクリアに失敗しました: %s\n
 
 #: ../midori/main.c:438
 #: ../midori/main.c:559
-#: ../extensions/formhistory/formhistory.c:249
+#: ../extensions/formhistory/formhistory.c:526
 #, c-format
 msgid Failed to open database: %s\n
 msgstr データベースのオープンに失敗しました: %s\n
@@ -344,7 +344,7 @@ msgid _Bookmark
 msgstr ブックマーク(_B)
 
 #: ../midori/midori-app.c:1332
-#: ../midori/midori-browser.c:6049
+#: ../midori/midori-browser.c:6036
 msgid _Bookmarks
 msgstr ブックマーク(_B)
 
@@ -362,7 +362,7 @@ msgstr エクステンション(_E)
 
 #. i18n: Browsing history, visited web pages, closed tabs
 #: ../midori/midori-app.c:1336
-#: ../midori/midori-browser.c:4619
+#: ../midori/midori-browser.c:4606
 msgid _History
 msgstr 履歴(_H)
 
@@ -391,7 +391,7 @@ msgid _Closed Tabs
 msgstr 閉じたタブ(_C)
 
 #: ../midori/midori-app.c:1343
-#: ../midori/midori-browser.c:5206
+#: ../midori/midori-browser.c:5193
 msgid New _Window
 msgstr 新しいウィンドウ(_W)
 
@@ -419,13 +419,13 @@ msgid Writing failed.
 msgstr 書き込みに失敗しました。
 
 #: ../midori/midori-browser.c:326
-#: ../midori/midori-browser.c:5288
-#: ../midori/midori-browser.c:5297
+#: ../midori/midori-browser.c:5275
+#: ../midori/midori-browser.c:5284
 msgid Reload the current page
 msgstr 現在のページを再読み込みします
 
 #: ../midori/midori-browser.c:335
-#: ../midori/midori-browser.c:5294
+#: ../midori/midori-browser.c:5281
 msgid Stop loading the current page
 msgstr 現在のページの読み込みを中止します
 
@@ -476,7 +476,7 @@ msgid _Address:
 msgstr アドレス(_A):
 
 #: ../midori/midori-browser.c:844
-#: ../midori/midori-browser.c:4356
+#: ../midori/midori-browser.c:4343
 msgid _Folder:
 msgstr フォルダ(_F):
 
@@ -513,7 +513,7 @@ msgid The file needs %s but only %s are left.
 msgstr ファイルのダウンロードには %s 必要ですが、%s しか空きがありません。
 
 #: ../midori/midori-browser.c:1015
-#: ../midori/midori-browser.c:4425
+#: ../midori/midori-browser.c:4412
 msgid Save file as
 msgstr 名前を付けて保存
 
@@ -553,11 +553,11 @@ msgstr 選択された画像をダウンロードできません。
 msgid Save file
 msgstr ファイルの保存
 
-#: ../midori/midori-browser.c:2327
+#: ../midori/midori-browser.c:2326
 msgid Open file
 msgstr ファイルを開く
 
-#: ../midori/midori-browser.c:2458
+#: ../midori/midori-browser.c:2457
 msgid 
 To use the above URI open a news aggregator. There is usually a menu or 
button \New Subscription\, \New News Feed\ or similar.\n
 Alternatively go to Preferences, Applications in Midori, and select a News 
Aggregator. Next time you click the news feed icon, it will be added 
automatically.
@@ -565,543 +565,543 @@ msgstr 
 上記 URI を使用するにはフィードリーダを開いてください。通常「新規に購読」、「新規ニュースフィード」などのメニューやボタンがあります。\n
 もしくは Midori 
の設定のアプリケーションタブでフィードリーダを指定してください。次にニュースフィードアイコンをクリックした時に自動的に追加されます。
 
-#: ../midori/midori-browser.c:2464
+#: ../midori/midori-browser.c:2463
 #: ../extensions/feed-panel/main.c:365
 msgid New feed
 msgstr 新しいフィード
 
 # tooltip
-#: ../midori/midori-browser.c:2507
-#: ../midori/midori-browser.c:5357
+#: ../midori/midori-browser.c:2506
+#: ../midori/midori-browser.c:5344
 #: ../panels/midori-bookmarks.c:426
 msgid Add a new bookmark
 msgstr 新しいブックマークを追加します
 
-#: ../midori/midori-browser.c:3004
+#: ../midori/midori-browser.c:3005
 #: ../midori/midori-searchaction.c:488
 msgid Empty
 msgstr 空です
 
-#: ../midori/midori-browser.c:3500
+#: ../midori/midori-browser.c:3501
 msgid Toggle text cursor navigation
 msgstr テキストカーソルでのナビゲーションに切り替えます
 
-#: ../midori/midori-browser.c:3818
-#: ../midori/midori-browser.c:5743
+#: ../midori/midori-browser.c:3809
+#: ../midori/midori-browser.c:5730
 #, c-format
 msgid Failed to insert new history item: %s\n
 msgstr 新規履歴アイテムの挿入に失敗しました: %s\n
 
-#: ../midori/midori-browser.c:4153
+#: ../midori/midori-browser.c:4140
 #: ../panels/midori-bookmarks.c:742
 #: 

[Xfce4-commits] thunar-archive-plugin:master l10n: Updated Italian (it) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to d2af7f0e370f725123ddff18155f855c5e2da897 (commit)
   from ed5ea0de67839f0191631cbdc1c08ed5b526f254 (commit)

commit d2af7f0e370f725123ddff18155f855c5e2da897
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Feb 13 15:47:27 2012 +0100

l10n: Updated Italian (it) translation to 100%

New status: 13 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/it.po |   20 ++--
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/po/it.po b/po/it.po
index 9438944..d76fc32 100644
--- a/po/it.po
+++ b/po/it.po
@@ -2,28 +2,28 @@
 # Copyright (C) 2006-2007 Benedikt Meurer be...@xfce.org
 # This file is distributed under the same license as the thunar-archive-plugin 
package.
 # Roberto Pariset robdeb...@gmail.com, 2006-2007.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: thunar-archive-plugin 0.2.4\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-23 17:57+0100\n
+POT-Creation-Date: 2012-02-13 12:06+\n
 PO-Revision-Date: 2007-05-22 09:05+0200\n
 Last-Translator: Roberto Pariset robdeb...@gmail.com\n
 Language-Team: Italian xfce-i...@xfce.org\n
-Language: it\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=utf-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: it\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #. prepare the dialog to query the preferred archiver for the user
-#: ../thunar-archive-plugin/tap-backend.c:85
+#: ../thunar-archive-plugin/tap-backend.c:81
 msgid Select an archive manager
-msgstr Selezionare un gestore di archivio
+msgstr Selezionare un gestore di archivi
 
 #. add the header label
-#: ../thunar-archive-plugin/tap-backend.c:109
+#: ../thunar-archive-plugin/tap-backend.c:105
 msgid 
 Please select your preferred archive manager\n
 from the list of available applications below:
@@ -32,11 +32,11 @@ msgstr 
 dall'elenco sottostante di applicazioni disponibili:
 
 #. tell the user that we cannot handle the specified mime types
-#: ../thunar-archive-plugin/tap-backend.c:284
-#: ../thunar-archive-plugin/tap-backend.c:431
+#: ../thunar-archive-plugin/tap-backend.c:280
+#: ../thunar-archive-plugin/tap-backend.c:427
 #, c-format
 msgid No suitable archive manager found
-msgstr Non trovato alcun gestore di archivio appropriato
+msgstr Non è stato trovato alcun gestore di archivi adatto
 
 #. execute the action
 #: ../thunar-archive-plugin/tap-provider.c:336
@@ -77,7 +77,7 @@ msgstr Cr_ea un archivio...
 msgid Create an archive with the selected object
 msgid_plural Create an archive with the selected objects
 msgstr[0] Crea un archivio con l'oggetto selezionato
-msgstr[1] Crea un archivio con gli oggetto selezionati
+msgstr[1] Crea un archivio con gli oggetti selezionati
 
 #. TRANSLATORS: This is the label of the Drag'n'Drop Extract here action
 #: ../thunar-archive-plugin/tap-provider.c:596
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-screenshooter:master Fix crash with NULL save path (bug #8443).

2012-02-13 Thread Jérôme Guelfucci
Updating branch refs/heads/master
 to 06c67fedab4dd03499485740209db7c5220a83e7 (commit)
   from 336f7822b273d9b843b318a4e8a2976824f54473 (commit)

commit 06c67fedab4dd03499485740209db7c5220a83e7
Author: Jérôme Guelfucci jero...@xfce.org
Date:   Mon Feb 13 17:14:16 2012 +0100

Fix crash with NULL save path (bug #8443).

The gdk_pixbuf_save documentation was not exactly clear on that, will
file a bug.

 lib/screenshooter-dialogs.c |   18 ++
 1 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/lib/screenshooter-dialogs.c b/lib/screenshooter-dialogs.c
index 8680118..104190a 100644
--- a/lib/screenshooter-dialogs.c
+++ b/lib/screenshooter-dialogs.c
@@ -203,9 +203,9 @@ static void cb_delay_spinner_changed (GtkWidget *spinner, 
ScreenshotData *sd)
 /* If @timestamp is true, generates a file name @title - date - hour - n.png,
  * where n is the lowest integer such as this file does not exist in the @uri
  * folder.
- * Else, generates a file name @title-n.png, where n is the lowest integer 
+ * Else, generates a file name @title-n.png, where n is the lowest integer
  * such as this file does not exist in the @uri folder.
- * 
+ *
  * @uri: uri of the folder for which the filename should be generated.
  * @title: the main title of the file name.
  * @timestamp: whether the date and the hour should be appended to the file 
name.
@@ -510,9 +510,13 @@ static gchar
 
   if (G_UNLIKELY (!gdk_pixbuf_save (screenshot, save_path, png, error, 
NULL)))
 {
-  screenshooter_error (%s, error-message);
+  if (error)
+{
+  /* See bug #8443, looks like error is not set when path is NULL */
+  screenshooter_error (%s, error-message);
+  g_error_free (error);
+}
 
-  g_error_free (error);
   g_free (save_path);
 
   return NULL;
@@ -606,6 +610,12 @@ static gchar
   GFile *save_file = g_file_new_for_uri (save_uri);
   gchar *result = NULL;
 
+  if (save_uri == NULL)
+{
+  g_object_unref (save_file);
+  return NULL;
+}
+
   /* If the URI is a local one, we save directly */
 
   if (!screenshooter_is_remote_uri (save_uri))
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master l10n: Updated Greek (el) translation to 100%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to d6ee6df9740fd7afa05172d45d3c9d35a52d806b (commit)
   from 492504d340623c92957e6f94ded2bf0f107bbbed (commit)

commit d6ee6df9740fd7afa05172d45d3c9d35a52d806b
Author: Georgios Stefanakis nonviot...@gmail.com
Date:   Mon Feb 13 20:01:23 2012 +0100

l10n: Updated Greek (el) translation to 100%

New status: 142 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  357 +
 1 files changed, 193 insertions(+), 164 deletions(-)

diff --git a/po/el.po b/po/el.po
index 024cccd..d69bef8 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2,19 +2,21 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # Evaggelos Balaskas ebalas...@ebalaskas.gr, 2008.
+# Georgios Stefanakis nonviot...@gmail.com, 2012.
+#
 msgid 
 msgstr 
 Project-Id-Version: el\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2012-01-08 13:32+0100\n
-PO-Revision-Date: 2010-02-01 08:35+0200\n
-Last-Translator: Evaggelos Balaskas ebalas...@ebalaskas.gr\n
-Language-Team: Greek n...@tux.hellug.gr\n
+POT-Creation-Date: 2012-02-13 17:36+\n
+PO-Revision-Date: 2012-02-13 20:59+0200\n
+Last-Translator: Georgios Stefanakis nonviot...@gmail.com\n
+Language-Team: Greek, Modern (1453-) \n
 Language: el\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Plural-Forms: nplurals=2; plural=(n != 1)\n
 X-Poedit-Language: Greek\n
 X-Poedit-SourceCharset: utf-8\n
 X-Poedit-Country: GREECE\n
@@ -34,10 +36,10 @@ msgstr Εκκίνηση προβολής διαφανειών
 
 #: ../src/main.c:77
 msgid Show settings dialog
-msgstr 
+msgstr Εμφάνιση διαλόγου ρυθμίσεων
 
 #: ../src/main.c:105
-#, fuzzy, c-format
+#, c-format
 msgid 
 %s: %s\n
 \n
@@ -45,371 +47,405 @@ msgid 
 available command line options.\n
 msgstr 
 %s: %s\n
-Δοκίμασε %s --help για να δεις μία πλήρη λίστα με τις διαθέσιμες παραμέτρους 
-στην γραμμή εντολών.\n
+Δοκίμαστε %s --help για να δείτε μία πλήρη λίστα με όλες τις διαθέσιμες 
+επιλογές της γραμμής εντολών.\n
 
-#: ../src/main_window.c:55 ../ristretto.desktop.in.h:1
+#: ../src/main_window.c:53 ../ristretto.desktop.in.h:1
 msgid Image Viewer
 msgstr Εφαρμογή προβολής εικόνων
 
 #. File Menu
-#: ../src/main_window.c:316
+#: ../src/main_window.c:328
 msgid _File
 msgstr _Αρχείο
 
-#: ../src/main_window.c:317
+#: ../src/main_window.c:329
 msgid _Open
 msgstr Άν_οιγμα
 
-#: ../src/main_window.c:317
+#: ../src/main_window.c:329
 msgid Open an image
 msgstr Άνοιγμα μίας εικόνας
 
-#: ../src/main_window.c:318
+#: ../src/main_window.c:330
 msgid _Save copy
 msgstr _Αποθήκευση αντιγράφου
 
-#: ../src/main_window.c:318
+#: ../src/main_window.c:330
 msgid Save a copy of the image
 msgstr Αποθήκευση ενός αντίγραφου της εικόνας
 
-#: ../src/main_window.c:319
+#: ../src/main_window.c:331
 msgid _Properties
-msgstr 
+msgstr _Ιδιότητες
 
-#: ../src/main_window.c:319
+#: ../src/main_window.c:331
 msgid Show file properties
-msgstr 
+msgstr Προβολή ιδιοτήτων του επιλεγμένου αρχείου
 
-#: ../src/main_window.c:320
+#: ../src/main_window.c:332
 msgid _Close
 msgstr _Κλείσιμο
 
-#: ../src/main_window.c:320
+#: ../src/main_window.c:332
 msgid Close this image
 msgstr Κλείσιμο της εικόνας
 
-#: ../src/main_window.c:321
+#: ../src/main_window.c:333
 msgid _Quit
 msgstr _Έξοδος
 
-#: ../src/main_window.c:321
+#: ../src/main_window.c:333
 msgid Quit Ristretto
 msgstr Έξοδος από το ristretto
 
 #. Edit Menu
-#: ../src/main_window.c:323
+#: ../src/main_window.c:335
 msgid _Edit
 msgstr _Επεξεργασία
 
-#: ../src/main_window.c:324
+#: ../src/main_window.c:336
 msgid _Open with...
 msgstr Άν_οιγμα με...
 
-#: ../src/main_window.c:325
+#: ../src/main_window.c:337
 msgid _Sorting
 msgstr _Ταξινόμηση
 
-#: ../src/main_window.c:326
+#: ../src/main_window.c:338
 msgid _Delete
 msgstr _Διαγραφή
 
-#: ../src/main_window.c:326
-#, fuzzy
+#: ../src/main_window.c:338
 msgid Delete this image from disk
-msgstr Κλείσιμο της εικόνας
+msgstr Διαγραφή αυτής της εικόνας από τον δίσκο
 
-#: ../src/main_window.c:327
+#: ../src/main_window.c:339
 msgid _Clear private data
-msgstr 
+msgstr _Καθαρισμός προσωπικών δεδομένων
 
-#: ../src/main_window.c:328
+#: ../src/main_window.c:340
 msgid _Preferences
 msgstr _Προτιμήσεις
 
 #. View Menu
-#: ../src/main_window.c:330
+#: ../src/main_window.c:342
 msgid _View
 msgstr _Εμφάνιση
 
-#: ../src/main_window.c:331
+#: ../src/main_window.c:343
 msgid _Fullscreen
 msgstr _Πλήρης Οθόνη
 
-#: ../src/main_window.c:332
+#: ../src/main_window.c:344
 msgid _Leave Fullscreen
 msgstr Έξ_οδος από πλήρη οθόνη
 
-#: ../src/main_window.c:333
+#: ../src/main_window.c:345
 msgid _Set as Wallpaper
 msgstr _Ορισμός της επιφάνεια εργασίας
 
 #. Zoom submenu
-#: ../src/main_window.c:335
-#, 

[Xfce4-commits] ristretto:master l10n: Updated German (de) translation to 99%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to f632d9b7a7f99b2c635580fe154916865e59eed5 (commit)
   from d6ee6df9740fd7afa05172d45d3c9d35a52d806b (commit)

commit f632d9b7a7f99b2c635580fe154916865e59eed5
Author: Christoph Wickert christoph.wick...@googlemail.com
Date:   Mon Feb 13 21:48:07 2012 +0100

l10n: Updated German (de) translation to 99%

New status: 141 messages complete with 1 fuzzy and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/de.po |   15 ++-
 1 files changed, 2 insertions(+), 13 deletions(-)

diff --git a/po/de.po b/po/de.po
index 7e79611..d5dc050 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,7 +9,7 @@ msgid 
 msgstr 
 Project-Id-Version: ristretto\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2012-02-07 16:36+\n
+POT-Creation-Date: 2012-02-13 17:36+\n
 PO-Revision-Date: 2010-02-18 15:50+0100\n
 Last-Translator: Thomas Schütz x...@thschuetz.de\n
 Language-Team: German\n
@@ -223,7 +223,6 @@ msgid _Position
 msgstr _Position
 
 #: ../src/main_window.c:376
-#, fuzzy
 msgid _Size
 msgstr _Größe
 
@@ -232,7 +231,6 @@ msgid Thumbnail Bar _Position
 msgstr _Position der Miniaturvorschau
 
 #: ../src/main_window.c:378
-#, fuzzy
 msgid Thumbnail _Size
 msgstr _Miniaturbilder
 
@@ -283,37 +281,30 @@ msgid Bottom
 msgstr Unten
 
 #: ../src/main_window.c:416
-#, fuzzy
 msgid Very Small
 msgstr Sehr klein
 
 #: ../src/main_window.c:417
-#, fuzzy
 msgid Smaller
 msgstr Kleiner
 
 #: ../src/main_window.c:418
-#, fuzzy
 msgid Small
 msgstr Klein
 
 #: ../src/main_window.c:419
-#, fuzzy
 msgid Normal
-msgstr _Normal
+msgstr Normal
 
 #: ../src/main_window.c:420
-#, fuzzy
 msgid Large
 msgstr Groß
 
 #: ../src/main_window.c:421
-#, fuzzy
 msgid Larger
 msgstr Größer
 
 #: ../src/main_window.c:422
-#, fuzzy
 msgid Very Large
 msgstr Sehr groß
 
@@ -587,7 +578,6 @@ msgid %s - Properties
 msgstr Eigenschaften von %s
 
 #: ../src/thumbnailer.c:430
-#, fuzzy
 msgid 
 The thumbnailer-service can not be reached,\n
 for this reason, the thumbnails can not be\n
@@ -604,7 +594,6 @@ msgstr 
 Problem zu beheben.
 
 #: ../src/thumbnailer.c:440
-#, fuzzy
 msgid Do _not show this message again
 msgstr Diese Nachricht _nicht noch einmal anzeigen
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-timer-plugin:master l10n: Updated German (de) translation to 93%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 22855e02725f2c424f37dbc2e1d88556cbf6d6e6 (commit)
   from 681d986e11a110e7ce207d83cff0964fa3ffb54d (commit)

commit 22855e02725f2c424f37dbc2e1d88556cbf6d6e6
Author: Christoph Wickert christoph.wick...@googlemail.com
Date:   Mon Feb 13 22:14:14 2012 +0100

l10n: Updated German (de) translation to 93%

New status: 30 messages complete with 2 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/de.po |3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/po/de.po b/po/de.po
index 9701757..4a9408d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -74,7 +74,6 @@ msgid At %02d:%02d
 msgstr Bei %02d: %02d
 
 #: ../src/xfcetimer.c:619
-#, fuzzy
 msgid Name
 msgstr Name
 
@@ -100,7 +99,6 @@ msgid s  
 msgstr Sekunden  
 
 #: ../src/xfcetimer.c:653
-#, fuzzy
 msgid 
 \n
 or\n
@@ -110,7 +108,6 @@ msgstr 
 
 #. **
 #: ../src/xfcetimer.c:673
-#, fuzzy
 msgid 
 \n
 The command to run
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-weather-plugin:master l10n: Updated German (de) translation to 99%

2012-02-13 Thread Transifex
Updating branch refs/heads/master
 to 4f7c7f6477c002a4034b61f13d2306b0f2b30b5e (commit)
   from e0fa70f23f9a818b5d3db8c8774434ca3b1eb55c (commit)

commit 4f7c7f6477c002a4034b61f13d2306b0f2b30b5e
Author: Christoph Wickert christoph.wick...@googlemail.com
Date:   Mon Feb 13 22:27:34 2012 +0100

l10n: Updated German (de) translation to 99%

New status: 256 messages complete with 2 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/de.po |   44 
 1 files changed, 20 insertions(+), 24 deletions(-)

diff --git a/po/de.po b/po/de.po
index b4198d3..0c5c449 100644
--- a/po/de.po
+++ b/po/de.po
@@ -62,12 +62,12 @@ msgstr WB
 
 #: ../panel-plugin/weather.c:260 ../panel-plugin/weather.c:760
 msgid Cannot update weather data
-msgstr Kann Wetterdaten nicht aktualisieren
+msgstr Wetterdaten können nicht aktualisiert werden
 
 #: ../panel-plugin/weather.c:693
 #, c-format
 msgid Unable to open the following url: %s
-msgstr Kann die folgende Adresse nicht öffnen: %s
+msgstr Folgende Adresse kann nicht geöffnet werden: %s
 
 #: ../panel-plugin/weather.c:721 ../panel-plugin/weather-summary.c:611
 #: ../panel-plugin/weather.desktop.in.in.h:2
@@ -134,7 +134,7 @@ msgstr Nicht gesetzt
 
 #: ../panel-plugin/weather-config.c:303
 msgid Detecting...
-msgstr Ermitteln...
+msgstr Ermitteln…
 
 #: ../panel-plugin/weather-config.c:356
 msgid Measurement unit:
@@ -154,7 +154,7 @@ msgstr Ortsangabe:
 
 #: ../panel-plugin/weather-config.c:415
 msgid Change...
-msgstr Ändere...
+msgstr Ändern…
 
 #. proxy
 #: ../panel-plugin/weather-config.c:428
@@ -166,12 +166,13 @@ msgid Use proxy server
 msgstr Proxy-Server benutzen
 
 #: ../panel-plugin/weather-config.c:433
+#, fuzzy
 msgid Auto-detect from environment
-msgstr Auto-Erkennung
+msgstr Automatische Erkennung
 
 #: ../panel-plugin/weather-config.c:505
 msgid Labels to display
-msgstr Beschriftung zum Anzeigen
+msgstr Anzuzeigende Beschriftungen
 
 #: ../panel-plugin/weather-config.c:554
 msgid Animate transitions between labels
@@ -212,35 +213,34 @@ msgstr 
 #: ../panel-plugin/weather-http.c:244
 #, c-format
 msgid Failed to open the socket (%s).
-msgstr Konnte den Socket nicht öffnen (%s).
+msgstr Fehler beim Öffnen des Socket (%s).
 
 #. display warning
 #: ../panel-plugin/weather-http.c:255
 #, c-format
 msgid Failed to create a connection with the host (%s).
-msgstr Konnte keine Verbindung mit dem HHost aufbauen (%s).
+msgstr Fehler beim Verbinden mit dem Rechner (%s).
 
 #. display warning
 #: ../panel-plugin/weather-http.c:296
 #, c-format
 msgid Failed to send the request (%s).
-msgstr Konnte die Anfrage nicht senden (%s).
+msgstr Fehler beim Senden der Anfrage (%s).
 
 #. display warning
 #: ../panel-plugin/weather-http.c:349
 #, c-format
 msgid Failed to receive data (%s)
-msgstr Konnte Daten nicht empfangen (%s).
+msgstr Fehler beim Empfangen der Daten (%s).
 
 #: ../panel-plugin/weather-http.c:375
-#, fuzzy
 msgid Negative content length
 msgstr Negative Datenlänge
 
 #. display warning
 #: ../panel-plugin/weather-http.c:411
 msgid Unable to detect the content length.
-msgstr Kann die Länge des Inhalts nicht bestimmen.
+msgstr Länge des Inhalts kann nicht bestimmt werden.
 
 #: ../panel-plugin/weather-http.c:419
 msgid No content received.
@@ -252,15 +252,15 @@ msgstr Ergebnisse
 
 #: ../panel-plugin/weather-search.c:183
 msgid Searching...
-msgstr Suche...
+msgstr Suchen…
 
 #: ../panel-plugin/weather-search.c:223
 msgid Search weather location code
-msgstr Suche Wetterstationscode
+msgstr Wetterstationscode suchen
 
 #: ../panel-plugin/weather-search.c:247
 msgid Enter a city name or zip code
-msgstr Geben Sie eine Stadt an
+msgstr Geben Sie eine Stadt oder Postleitzahl an
 
 #. head
 #: ../panel-plugin/weather-summary.c:268
@@ -441,7 +441,7 @@ msgstr Details
 
 #: ../panel-plugin/weather-translate.c:39
 msgid AM Clouds / PM Sun
-msgstr Vormittags Wolken, abends Sonne
+msgstr Vormittags Wolken, nachmittags Sonne
 
 #: ../panel-plugin/weather-translate.c:40
 msgid AM Light Rain
@@ -488,6 +488,7 @@ msgid Blizzard
 msgstr Schneesturm
 
 #: ../panel-plugin/weather-translate.c:51
+#, fuzzy
 msgid Blizzard Conditions
 msgstr Bedingungen für einen Schneesturm
 
@@ -573,7 +574,7 @@ msgstr Feucht
 
 #: ../panel-plugin/weather-translate.c:72
 msgid Dust
-msgstr Staub
+msgstr Nebel
 
 #: ../panel-plugin/weather-translate.c:73
 msgid Fair
@@ -629,7 +630,7 @@ msgstr Starker Regen
 
 #: ../panel-plugin/weather-translate.c:86
 msgid Heavy Rain Shower
-msgstr Starker Regen
+msgstr Starker Regenschauer
 
 #: ../panel-plugin/weather-translate.c:87
 msgid Heavy Snow
@@ -680,7 +681,6 @@ msgid Light Rain / Wind
 msgstr Leichter Regen und Wind
 
 #: ../panel-plugin/weather-translate.c:99
-#, fuzzy
 msgid Light rain late
 msgstr Später leichter Regen
 
@@ -849,12 +849,10 @@ msgid Rain Shower and Windy
 msgstr Regenschauer und windig
 
 #: ../panel-plugin/weather-translate.c:141
-#, fuzzy
 

[Xfce4-commits] exo:xfce-4.8 l10n: Updated Greek (el) translation to 91%

2012-02-13 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 07d5c94fb86e2f45faea887beb2986665b0d1533 (commit)
   from 93871d5a02270a4def59448f6872340b2010ad38 (commit)

commit 07d5c94fb86e2f45faea887beb2986665b0d1533
Author: Spiros Georgaras s...@hellug.gr
Date:   Mon Feb 13 23:07:01 2012 +0100

l10n: Updated Greek (el) translation to 91%

New status: 43 messages complete with 0 fuzzies and 4 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 docs/manual/po/el.po |  406 +-
 1 files changed, 302 insertions(+), 104 deletions(-)

diff --git a/docs/manual/po/el.po b/docs/manual/po/el.po
index 6ffeb43..3927ae2 100644
--- a/docs/manual/po/el.po
+++ b/docs/manual/po/el.po
@@ -9,6 +9,7 @@ msgstr 
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: el\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 X-Poedit-Language: Greek\n
 X-Poedit-SourceCharset: utf-8\n
@@ -17,208 +18,405 @@ msgstr 
 #. When image changes, this message will be marked fuzzy or untranslated for
 #. you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ./exo-preferred-applications.xml95(None)
-msgid @@image: 'images/exo-preferred-applications-internet.png'; 
md5=aad820986d24a1cc052e491cf22100a2
+#: exo-preferred-applications.xml95(None)
+msgid 
+@@image: 'images/exo-preferred-applications-internet.png'; 
+md5=aad820986d24a1cc052e491cf22100a2
 msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for
 #. you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ./exo-preferred-applications.xml117(None)
-msgid @@image: 'images/exo-preferred-applications-webbrowser-menu.png'; 
md5=5aebcc859c5b3bffbb6141fb7e51cd7d
+#: exo-preferred-applications.xml117(None)
+msgid 
+@@image: 'images/exo-preferred-applications-webbrowser-menu.png'; 
+md5=5aebcc859c5b3bffbb6141fb7e51cd7d
 msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for
 #. you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ./exo-preferred-applications.xml140(None)
-msgid @@image: 'images/exo-preferred-applications-webbrowser-custom.png'; 
md5=8029c8ff46e17b868286f47bb3598d8d
+#: exo-preferred-applications.xml140(None)
+msgid 
+@@image: 'images/exo-preferred-applications-webbrowser-custom.png'; 
+md5=8029c8ff46e17b868286f47bb3598d8d
 msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for
 #. you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ./exo-preferred-applications.xml178(None)
-msgid @@image: 'images/exo-preferred-applications-utilities.png'; 
md5=5f789aa388d6fc1ea613a3d26c4fb0d7
+#: exo-preferred-applications.xml178(None)
+msgid 
+@@image: 'images/exo-preferred-applications-utilities.png'; 
+md5=5f789aa388d6fc1ea613a3d26c4fb0d7
 msgstr 
 
-#: ./exo-preferred-applications.xml13(title)
+#: exo-preferred-applications.xml13(title)
 msgid Xfce 4 Preferred Applications
 msgstr Προτιμώμενες εφαρμογές του Xfce 4
 
-#: ./exo-preferred-applications.xml18(year)
+#: exo-preferred-applications.xml18(year)
 msgid 2004
 msgstr 2004
 
-#: ./exo-preferred-applications.xml19(year)
+#: exo-preferred-applications.xml19(year)
 msgid 2005
 msgstr 2005
 
-#: ./exo-preferred-applications.xml20(year)
+#: exo-preferred-applications.xml20(year)
 msgid 2006
 msgstr 2006
 
-#: ./exo-preferred-applications.xml21(holder)
+#: exo-preferred-applications.xml21(holder)
 msgid Benedikt Meurer
 msgstr Benedikt Meurer
 
-#: ./exo-preferred-applications.xml25(para)
-msgid Permission is granted to copy, distribute and/or modify this document 
under the terms of the GNU Free Documentation License, Version 1.1 or any later 
version published by the Free Software Foundation; with no Invariant Sections, 
with no Front-Cover Texts, and with no Back-Cover Texts. The complete license 
text is available from the ulink type=\http\ 
url=\http://www.gnu.org/\;Free Software Foundation/ulink.
-msgstr Χορηγείται άδεια αντιγραφής, διανομής και/ή τροποποίησης του παρόντος 
εγγράφου υπό τους όρους της έκδοσης 1.1 της Ελεύθερης Άδειας Τεκμηρίωσης GNU 
(GFDL), ή οποιασδήποτε μεταγενέστερης έκδοσής αυτής από το Ίδρυμα Ελεύθερου 
Λογισμικού (FSF), χωρίς αμετάβλητες ενότητες, κείμενα εμπροσθοφύλλου και 
κείμενα οπισθοφύλλου. Αντίγραφο της άδειας GFDL είναι διαθέσιμο από το ulink 
type=\http\ url=\http://www.gnu.org/\;Ίδρυμα Ελεύθερου Λογισμικού 
(FSF)/ulink.
-
-#: ./exo-preferred-applications.xml37(firstname)
+#: exo-preferred-applications.xml25(para)
+msgid 
+Permission is granted to copy, distribute and/or modify this document under 
+the terms of the GNU Free Documentation License, Version 1.1 or any later 
+version published by the Free Software Foundation; with no Invariant 
+Sections, with no Front-Cover Texts, and with no Back-Cover Texts. The 
+complete license text is available from the ulink type=\http\ url=

[Xfce4-commits] xfwm4:master Do not tile fullscreen windows

2012-02-13 Thread Olivier Fourdan
Updating branch refs/heads/master
 to ff9bfd5ebfe7e7dad4751448034c4e21588aee63 (commit)
   from 8d700b2283bb1bb3cdcc005ff839a11d5d09b228 (commit)

commit ff9bfd5ebfe7e7dad4751448034c4e21588aee63
Author: Olivier Fourdan ofour...@redhat.com
Date:   Mon Feb 13 23:02:59 2012 +0100

Do not tile fullscreen windows

 src/client.h |6 --
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/client.h b/src/client.h
index a87bd91..8d37de8 100644
--- a/src/client.h
+++ b/src/client.h
@@ -220,7 +220,8 @@
 #define CLIENT_CAN_FILL_WINDOW(c)   (FLAG_TEST(c-xfwm_flags, 
XFWM_FLAG_HAS_RESIZE | \
   
XFWM_FLAG_IS_RESIZABLE)  \
  !FLAG_TEST (c-flags, 
CLIENT_FLAG_FULLSCREEN | CLIENT_FLAG_MAXIMIZED))
-#define CLIENT_CAN_TILE_WINDOW(c)   (CLIENT_CAN_MAXIMIZE_WINDOW(c) | 
(c-type  WINDOW_NORMAL))
+#define CLIENT_CAN_TILE_WINDOW(c)   (CLIENT_CAN_MAXIMIZE_WINDOW(c)  \
+ (c-type  WINDOW_NORMAL))
 
 typedef enum
 {
@@ -435,7 +436,8 @@ void clientToggleMaximized  
(Client *,
 void clientTile (Client *,
  gint,
  gint,
- 
tilePositionType);
+ 
tilePositionType,
+ gboolean);
 void clientUpdateOpacity(Client *);
 void clientUpdateAllOpacity (ScreenInfo *);
 void clientSetOpacity   (Client *,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Revert PointerMotionHintMask (commit 7c095f5f), Add special treatment for full de-maximization, Do not always configure windows on tiling to avoid redraw artifacts when

2012-02-13 Thread Olivier Fourdan
Updating branch refs/heads/master
 to 2e5da52da598f0146b3869ad5763927686f87466 (commit)
   from ff9bfd5ebfe7e7dad4751448034c4e21588aee63 (commit)

commit 2e5da52da598f0146b3869ad5763927686f87466
Author: Olivier Fourdan ofour...@redhat.com
Date:   Mon Feb 13 23:06:40 2012 +0100

Revert PointerMotionHintMask (commit 7c095f5f),
Add special treatment for full de-maximization,
Do not always configure windows on tiling to avoid redraw artifacts when 
opaque-move is disabled.

 src/client.c |   52 +++-
 src/events.c |8 
 src/moveresize.c |9 -
 3 files changed, 43 insertions(+), 26 deletions(-)

diff --git a/src/client.c b/src/client.c
index 1149cb2..de741a6 100644
--- a/src/client.c
+++ b/src/client.c
@@ -3033,6 +3033,25 @@ clientRemoveMaximizeFlag (Client * c)
 static void
 clientNewMaxState (Client * c, XWindowChanges *wc, int mode)
 {
+if (FLAG_TEST_ALL (mode, CLIENT_FLAG_MAXIMIZED))
+{
+/*
+ * We need to test specifically for full de-maximization
+ * otherwise it's too confusing when the window changes
+ * from horiz to vertical maximization or vice-versa.
+ */
+if (FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED))
+{
+FLAG_UNSET (c-flags, CLIENT_FLAG_MAXIMIZED);
+wc-x = c-old_x;
+wc-y = c-old_y;
+wc-width = c-old_width;
+wc-height = c-old_height;
+
+return;
+}
+}
+
 if (FLAG_TEST (mode, CLIENT_FLAG_MAXIMIZED_HORIZ))
 {
 if (!FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED_HORIZ))
@@ -3187,16 +3206,14 @@ clientToggleMaximized (Client * c, int mode, gboolean 
restore_position)
 wc.width = c-width;
 wc.height = c-height;
 
-if (restore_position  !FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED_VERT))
-{
-c-old_y = c-y;
-c-old_height = c-height;
-}
-
-if (restore_position  !FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED_HORIZ))
+if (restore_position 
+FLAG_TEST (mode, CLIENT_FLAG_MAXIMIZED) 
+!FLAG_TEST (c-flags, CLIENT_FLAG_MAXIMIZED))
 {
 c-old_x = c-x;
+c-old_y = c-y;
 c-old_width = c-width;
+c-old_height = c-height;
 }
 
 /* 1) Compute the new state */
@@ -3229,7 +3246,7 @@ clientToggleMaximized (Client * c, int mode, gboolean 
restore_position)
 }
 
 void
-clientTile (Client * c, gint cx, gint cy, tilePositionType tile)
+clientTile (Client * c, gint cx, gint cy, tilePositionType tile, gboolean 
send_configure)
 {
 DisplayInfo *display_info;
 ScreenInfo *screen_info;
@@ -3287,16 +3304,17 @@ clientTile (Client * c, gint cx, gint cy, 
tilePositionType tile)
 c-height = wc.height;
 c-width = wc.width;
 
-setNetFrameExtents (display_info,
-c-window,
-frameTop (c),
-frameLeft (c),
-frameRight (c),
-frameBottom (c));
-
-clientSetNetActions (c);
-if (FLAG_TEST (c-xfwm_flags, XFWM_FLAG_MANAGED))
+if (send_configure)
 {
+setNetFrameExtents (display_info,
+c-window,
+frameTop (c),
+frameLeft (c),
+frameRight (c),
+frameBottom (c));
+
+clientSetNetActions (c);
+
 clientConfigure (c, wc, CWWidth | CWHeight | CWX | CWY, 
CFG_FORCE_REDRAW);
 }
 clientSetNetState (c);
diff --git a/src/events.c b/src/events.c
index 6ef3b22..df30ff9 100644
--- a/src/events.c
+++ b/src/events.c
@@ -433,22 +433,22 @@ handleKeyPress (DisplayInfo *display_info, XKeyEvent * ev)
 case KEY_TILE_DOWN:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
-   TILE_DOWN);
+   TILE_DOWN, TRUE);
 break;
 case KEY_TILE_LEFT:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
-   TILE_LEFT);
+   TILE_LEFT, TRUE);
 break;
 case KEY_TILE_RIGHT:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
-   TILE_RIGHT);
+   TILE_RIGHT, TRUE);
 break;
 case KEY_TILE_UP:
 clientTile (c, frameX (c) + frameWidth (c) / 2,
frameY (c) + frameHeight (c) / 2,
-   TILE_UP);
+   TILE_UP, TRUE);
 break;
 default:
 break;
diff --git a/src/moveresize.c b/src/moveresize.c
index 

[Xfce4-commits] midori:master Unify getting an image for an item

2012-02-13 Thread Christian Dywan
Updating branch refs/heads/master
 to cc7cf39150ee95100195d77b9e9291dae8fd419c (commit)
   from e268ffecfc8b668aafb92eaf27452df2712841cf (commit)

commit cc7cf39150ee95100195d77b9e9291dae8fd419c
Author: Christian Dywan christ...@twotoasts.de
Date:   Tue Feb 14 00:15:48 2012 +0100

Unify getting an image for an item

 katze/katze-arrayaction.c |   49 
 katze/katze-item.c|   40 
 katze/katze-item.h|5 +++-
 midori/midori-view.c  |9 +++
 4 files changed, 53 insertions(+), 50 deletions(-)

diff --git a/katze/katze-arrayaction.c b/katze/katze-arrayaction.c
index 5ce84f5..e69e1e7 100644
--- a/katze/katze-arrayaction.c
+++ b/katze/katze-arrayaction.c
@@ -355,8 +355,6 @@ katze_array_action_generate_menu (KatzeArrayAction* 
array_action,
 gint summand;
 KatzeItem* item;
 GtkWidget* menuitem;
-const gchar* icon_name;
-GdkPixbuf* icon;
 GtkWidget* image;
 GtkWidget* submenu;
 
@@ -385,18 +383,7 @@ katze_array_action_generate_menu (KatzeArrayAction* 
array_action,
 }
 menuitem = katze_image_menu_item_new_ellipsized (
 katze_item_get_name (item));
-if ((icon_name = katze_item_get_icon (item))  *icon_name)
-image = gtk_image_new_from_icon_name (icon_name, 
GTK_ICON_SIZE_MENU);
-else
-{
-if (KATZE_ITEM_IS_FOLDER (item))
-icon = gtk_widget_render_icon (menuitem,
-GTK_STOCK_DIRECTORY, GTK_ICON_SIZE_MENU, NULL);
-else
-icon = katze_load_cached_icon (katze_item_get_uri (item), 
proxy);
-image = gtk_image_new_from_pixbuf (icon);
-g_object_unref (icon);
-}
+image = katze_item_get_image (item);
 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menuitem), image);
 gtk_image_menu_item_set_always_show_image (
 GTK_IMAGE_MENU_ITEM (menuitem), TRUE);
@@ -552,7 +539,6 @@ katze_array_action_item_notify_cb (KatzeItem*   item,
 const gchar* property;
 const gchar* title;
 const gchar* desc;
-GdkPixbuf* icon;
 GtkWidget* image;
 
 if (!G_IS_PARAM_SPEC_STRING (pspec))
@@ -579,16 +565,13 @@ katze_array_action_item_notify_cb (KatzeItem*   item,
 }
 else if (KATZE_ITEM_IS_BOOKMARK (item)  !strcmp (property, uri))
 {
-icon = katze_load_cached_icon (katze_item_get_uri (item), GTK_WIDGET 
(toolitem));
-image = gtk_image_new_from_pixbuf (icon);
-g_object_unref (icon);
+image = katze_item_get_image (item);
 gtk_widget_show (image);
 gtk_tool_button_set_icon_widget (GTK_TOOL_BUTTON (toolitem), image);
 }
 else if (!strcmp (property, icon))
 {
-image = gtk_image_new_from_icon_name (katze_item_get_icon (item),
-  GTK_ICON_SIZE_MENU);
+image = katze_item_get_image (item);
 gtk_widget_show (image);
 gtk_tool_button_set_icon_widget (GTK_TOOL_BUTTON (toolitem), image);
 }
@@ -600,25 +583,12 @@ katze_array_action_proxy_create_menu_proxy_cb (GtkWidget* 
proxy,
 {
 KatzeArrayAction* array_action;
 GtkWidget* menuitem;
-const gchar* icon_name;
 GtkWidget* image;
-GdkPixbuf* icon;
 
 array_action = g_object_get_data (G_OBJECT (proxy), KatzeArrayAction);
 menuitem = katze_image_menu_item_new_ellipsized (
 katze_item_get_name (item));
-if ((icon_name = katze_item_get_icon (item))  *icon_name)
-image = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_MENU);
-else
-{
-if (KATZE_ITEM_IS_FOLDER (item))
-icon = gtk_widget_render_icon (menuitem,
-GTK_STOCK_DIRECTORY, GTK_ICON_SIZE_MENU, NULL);
-else
-icon = katze_load_cached_icon (katze_item_get_uri (item), proxy);
-image = gtk_image_new_from_pixbuf (icon);
-g_object_unref (icon);
-}
+image = katze_item_get_image (item);
 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menuitem), image);
 gtk_image_menu_item_set_always_show_image (
 GTK_IMAGE_MENU_ITEM (menuitem), TRUE);
@@ -674,7 +644,6 @@ katze_array_action_create_tool_item_for (KatzeArrayAction* 
array_action,
 const gchar* uri;
 const gchar* desc;
 GtkToolItem* toolitem;
-GdkPixbuf* icon;
 GtkWidget* image;
 GtkWidget* label;
 
@@ -686,20 +655,12 @@ katze_array_action_create_tool_item_for 
(KatzeArrayAction* array_action,
 return gtk_separator_tool_item_new ();
 
 if (KATZE_ITEM_IS_FOLDER (item))
-{
 toolitem = gtk_toggle_tool_button_new ();
-icon = gtk_widget_render_icon (GTK_WIDGET (toolitem),
-GTK_STOCK_DIRECTORY, GTK_ICON_SIZE_MENU, NULL);
-}
 else
-{
 toolitem = gtk_tool_button_new (NULL, );
-icon = katze_load_cached_icon (uri, GTK_WIDGET (toolitem));
-}
 

[Xfce4-commits] midori:master Pass URI in _action_private_browsing_activate

2012-02-13 Thread Christian Dywan
Updating branch refs/heads/master
 to 94236e1a9f1ea87dd03f7c962758e4df9e2351ff (commit)
   from cc7cf39150ee95100195d77b9e9291dae8fd419c (commit)

commit 94236e1a9f1ea87dd03f7c962758e4df9e2351ff
Author: Christian Dywan christ...@twotoasts.de
Date:   Tue Feb 14 00:23:22 2012 +0100

Pass URI in _action_private_browsing_activate

We need to, to avoid using GIO-based launching which
would mixup the arguments.

 midori/midori-browser.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-browser.c b/midori/midori-browser.c
index 75c2963..1572d51 100644
--- a/midori/midori-browser.c
+++ b/midori/midori-browser.c
@@ -2305,7 +2305,7 @@ static void
 _action_private_browsing_activate (GtkAction* action,
MidoriBrowser* browser)
 {
-sokoke_spawn_app (, TRUE);
+sokoke_spawn_app (about:private, TRUE);
 }
 
 static void
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits