[Xfce4-commits] xfce4-settings:master Get adjustments from builder directly.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to dff4b0e205d7ccfcd5ddb565a3536f1daa207a9d (commit)
   from a9c81afca911278a64c506360af6ed86ecc320a9 (commit)

commit dff4b0e205d7ccfcd5ddb565a3536f1daa207a9d
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 12:20:53 2011 +0100

Get adjustments from builder directly.

 dialogs/keyboard-settings/xfce-keyboard-settings.c |   18 +-
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/dialogs/keyboard-settings/xfce-keyboard-settings.c 
b/dialogs/keyboard-settings/xfce-keyboard-settings.c
index 6689c6f..776d13a 100644
--- a/dialogs/keyboard-settings/xfce-keyboard-settings.c
+++ b/dialogs/keyboard-settings/xfce-keyboard-settings.c
@@ -240,9 +240,9 @@ xfce_keyboard_settings_constructed (GObject *object)
   XfceKeyboardSettings *settings = XFCE_KEYBOARD_SETTINGS (object);
   GtkTreeViewColumn*column;
   GtkCellRenderer  *renderer;
-  GtkAdjustment*xkb_key_repeat_rate_scale;
-  GtkAdjustment*xkb_key_repeat_delay_scale;
-  GtkAdjustment*net_cursor_blink_time_scale;
+  GObject  *xkb_key_repeat_rate;
+  GObject  *xkb_key_repeat_delay;
+  GObject  *net_cursor_blink_time;
   GtkListStore *list_store;
   GObject  *xkb_key_repeat_check;
   GObject  *xkb_key_repeat_box;
@@ -266,11 +266,11 @@ xfce_keyboard_settings_constructed (GObject *object)
   exo_binding_new (G_OBJECT (xkb_key_repeat_check), active, G_OBJECT 
(xkb_key_repeat_box), sensitive);
   xfconf_g_property_bind (settings-priv-keyboards_channel, 
/Default/KeyRepeat, G_TYPE_BOOLEAN, G_OBJECT (xkb_key_repeat_check), 
active);
 
-  xkb_key_repeat_rate_scale = gtk_range_get_adjustment (GTK_RANGE 
(gtk_builder_get_object (GTK_BUILDER (settings), xkb_key_repeat_rate_scale)));
-  xfconf_g_property_bind (settings-priv-keyboards_channel, 
/Default/KeyRepeat/Rate, G_TYPE_INT, G_OBJECT (xkb_key_repeat_rate_scale), 
value);
+  xkb_key_repeat_rate = gtk_builder_get_object (GTK_BUILDER (settings), 
xkb_key_repeat_rate);
+  xfconf_g_property_bind (settings-priv-keyboards_channel, 
/Default/KeyRepeat/Rate, G_TYPE_INT, xkb_key_repeat_rate, value);
 
-  xkb_key_repeat_delay_scale = gtk_range_get_adjustment (GTK_RANGE 
(gtk_builder_get_object (GTK_BUILDER (settings), 
xkb_key_repeat_delay_scale)));
-  xfconf_g_property_bind (settings-priv-keyboards_channel, 
/Default/KeyRepeat/Delay, G_TYPE_INT, G_OBJECT (xkb_key_repeat_delay_scale), 
value);
+  xkb_key_repeat_delay = gtk_builder_get_object (GTK_BUILDER (settings), 
xkb_key_repeat_delay);
+  xfconf_g_property_bind (settings-priv-keyboards_channel, 
/Default/KeyRepeat/Delay, G_TYPE_INT, xkb_key_repeat_delay, value);
 
   /* XSETTINGS */
   net_cursor_blink_check = gtk_builder_get_object (GTK_BUILDER (settings), 
net_cursor_blink_check);
@@ -278,8 +278,8 @@ xfce_keyboard_settings_constructed (GObject *object)
   exo_binding_new (G_OBJECT (net_cursor_blink_check), active, G_OBJECT 
(net_cursor_blink_box), sensitive);
   xfconf_g_property_bind (settings-priv-xsettings_channel, 
/Net/CursorBlink, G_TYPE_BOOLEAN, G_OBJECT (net_cursor_blink_check), 
active);
 
-  net_cursor_blink_time_scale = gtk_range_get_adjustment (GTK_RANGE 
(gtk_builder_get_object (GTK_BUILDER (settings), 
net_cursor_blink_time_scale)));
-  xfconf_g_property_bind (settings-priv-xsettings_channel, 
/Net/CursorBlinkTime, G_TYPE_INT, G_OBJECT (net_cursor_blink_time_scale), 
value);
+  net_cursor_blink_time = gtk_builder_get_object (GTK_BUILDER (settings), 
net_cursor_blink_time);
+  xfconf_g_property_bind (settings-priv-xsettings_channel, 
/Net/CursorBlinkTime, G_TYPE_INT, net_cursor_blink_time, value);
 
   /* Configure shortcuts tree view */
   kbd_shortcuts_view = gtk_builder_get_object (GTK_BUILDER (settings), 
kbd_shortcuts_view);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings:master Make sure default values are applied in dialogs.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 308e45a88af48b099f4e1d83e270f8dfd00efa9c (commit)
   from dff4b0e205d7ccfcd5ddb565a3536f1daa207a9d (commit)

commit 308e45a88af48b099f4e1d83e270f8dfd00efa9c
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 12:30:25 2011 +0100

Make sure default values are applied in dialogs.

It seems the default value in the glade files is not applied
if set before upper/lower property :@. Also drop some weird
defaults and ditch page-size.

 .../accessibility-dialog.glade |   16 ++
 .../appearance-settings/appearance-dialog.glade|2 +-
 dialogs/keyboard-settings/keyboard-dialog.glade|9 ++-
 dialogs/mouse-settings/mouse-dialog.glade  |   21 ---
 4 files changed, 20 insertions(+), 28 deletions(-)

diff --git a/dialogs/accessibility-settings/accessibility-dialog.glade 
b/dialogs/accessibility-settings/accessibility-dialog.glade
index 271776c..9e57791 100644
--- a/dialogs/accessibility-settings/accessibility-dialog.glade
+++ b/dialogs/accessibility-settings/accessibility-dialog.glade
@@ -4,53 +4,51 @@
   !-- interface-requires libxfce4ui 4.5 --
   !-- interface-naming-policy toplevel-contextual --
   object class=GtkAdjustment id=slow-keys-delay
-property name=value500.022351/property
 property name=lower50/property
 property name=upper1000/property
+property name=value500/property
 property name=step_increment10/property
 property name=page_increment100/property
-property name=page_size10/property
   /object
   object class=GtkAdjustment id=bounce-keys-delay
-property name=value500.022351/property
 property name=lower50/property
 property name=upper1000/property
+property name=value500/property
 property name=step_increment1/property
 property name=page_increment10/property
-property name=page_size10/property
   /object
   object class=GtkAdjustment id=mouse-emulation-delay
-property name=value150.022351/property
 property name=lower1/property
 property name=upper1000/property
+property name=value150/property
 property name=step_increment10/property
 property name=page_increment100/property
   /object
   object class=GtkAdjustment id=mouse-emulation-interval
-property name=value20/property
 property name=lower10/property
 property name=upper1000/property
+property name=value20/property
 property name=step_increment1/property
 property name=page_increment10/property
   /object
   object class=GtkAdjustment id=mouse-emulation-curve
-property name=value2.2351741811588166e-10/property
 property name=lower-1000/property
 property name=upper1000/property
+property name=value0/property
 property name=step_increment10/property
 property name=page_increment100/property
   /object
   object class=GtkAdjustment id=mouse-emulation-max-speed
-property name=value999.977649/property
 property name=lower1/property
 property name=upper2000/property
+property name=value1000/property
 property name=step_increment10/property
 property name=page_increment100/property
   /object
   object class=GtkAdjustment id=mouse-emulation-time-to-max
-property name=value3000/property
 property name=lower100/property
 property name=upper1/property
+property name=value3000/property
 property name=step_increment10/property
 property name=page_increment100/property
   /object
diff --git a/dialogs/appearance-settings/appearance-dialog.glade 
b/dialogs/appearance-settings/appearance-dialog.glade
index 656914a..2880429 100644
--- a/dialogs/appearance-settings/appearance-dialog.glade
+++ b/dialogs/appearance-settings/appearance-dialog.glade
@@ -4,9 +4,9 @@
   !-- interface-requires libxfce4ui 4.5 --
   !-- interface-naming-policy toplevel-contextual --
   object class=GtkAdjustment id=xft_custom_dpi
-property name=value96/property
 property name=lower48/property
 property name=upper1000/property
+property name=value96/property
 property name=step_increment1/property
 property name=page_increment10/property
   /object
diff --git a/dialogs/keyboard-settings/keyboard-dialog.glade 
b/dialogs/keyboard-settings/keyboard-dialog.glade
index 37fa86d..e30c10b 100644
--- a/dialogs/keyboard-settings/keyboard-dialog.glade
+++ b/dialogs/keyboard-settings/keyboard-dialog.glade
@@ -4,28 +4,25 @@
   !-- interface-requires libxfce4ui 4.5 --
   !-- interface-naming-policy toplevel-contextual --
   object class=GtkAdjustment id=xkb_key_repeat_delay
-property name=value500/property
 property name=lower10/property
 property name=upper1000/property
+property name=value500/property
 property name=step_increment1/property
 property name=page_increment10/property
-property name=page_size1/property
   /object
   object class=GtkAdjustment id=xkb_key_repeat_rate
-property 

[Xfce4-commits] xfce4-settings:nick/wip-bug-7014 Creating branch nick/wip-bug-7014

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/nick/wip-bug-7014
 as new branch
 to 090a969dcc45237df4b0617962565c1ba5748eaf (commit)

Branches are created implicitly by pushing. This mail only exists to 
let you know that there was code pushed to 

  refs/heads/nick/wip-bug-7014

for the first time. Mails for the commits that lead to the creation 
of the branch will follow after this mail.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings:nick/wip-bug-7014 Don't use xrdb to update xft and cursor settings (bug #7014).

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/nick/wip-bug-7014
 to 090a969dcc45237df4b0617962565c1ba5748eaf (commit)
   from 308e45a88af48b099f4e1d83e270f8dfd00efa9c (commit)

commit 090a969dcc45237df4b0617962565c1ba5748eaf
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:40:33 2011 +0100

Don't use xrdb to update xft and cursor settings (bug #7014).

 xfsettingsd/main.c |2 +
 xfsettingsd/registry.c |  221 +++-
 xfsettingsd/registry.h |2 +-
 3 files changed, 126 insertions(+), 99 deletions(-)

diff --git a/xfsettingsd/main.c b/xfsettingsd/main.c
index 23a4e5f..272c30f 100644
--- a/xfsettingsd/main.c
+++ b/xfsettingsd/main.c
@@ -184,6 +184,8 @@ main(int argc, char **argv)
 
 xsettings_registry_notify(registry);
 
+xsettings_registry_xft_notify(registry);
+
 gdk_window_add_filter(NULL, manager_event_filter, registry);
 
 keep_running = TRUE;
diff --git a/xfsettingsd/registry.c b/xfsettingsd/registry.c
index 5364491..e2f58e9 100644
--- a/xfsettingsd/registry.c
+++ b/xfsettingsd/registry.c
@@ -15,7 +15,7 @@
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL RED HAT
  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
- * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
  * Author:  Owen Taylor, Red Hat, Inc.
@@ -40,6 +40,7 @@
 #include config.h
 #include X11/Xlib.h
 #include X11/Xmd.h
+#include X11/Xatom.h
 
 #include glib.h
 
@@ -170,13 +171,14 @@ struct _XSettingsRegistryPriv
 Window window;
 Atom xsettings_atom;
 Atom selection_atom;
+gboolean debug;
 };
 
 static void xsettings_registry_set_property(GObject*, guint, const GValue*, 
GParamSpec*);
 static void xsettings_registry_get_property(GObject*, guint, GValue*, 
GParamSpec*);
 
 static void
-cb_xsettings_registry_channel_property_changed(XfconfChannel *channel, const 
gchar *property_name, const GValue *value, XSettingsRegistry *registry); 
+cb_xsettings_registry_channel_property_changed(XfconfChannel *channel, const 
gchar *property_name, const GValue *value, XSettingsRegistry *registry);
 static Bool
 timestamp_predicate (Display *display, XEvent  *xevent, XPointer arg);
 static int
@@ -301,118 +303,125 @@ 
cb_xsettings_registry_channel_property_changed(XfconfChannel *channel, const gch
 
 xsettings_registry_notify(registry);
 if (!strncmp(name, /Xft, 4) || !strncmp(name, /Gtk/CursorTheme, 16))
-xsettings_registry_store_xrdb(registry);
+xsettings_registry_xft_notify(registry);
 }
 
-void
-xsettings_registry_store_xrdb(XSettingsRegistry *registry)
+static void
+update_property (GString *props, const gchar* key, const gchar* value)
 {
-gchar*filename;
-GError   *error = NULL;
-GString  *string;
-gchar*command, *contents;
-gboolean  result = TRUE;
-
-/* store the xft properties */
-filename = xfce_resource_save_location(XFCE_RESOURCE_CONFIG, xfce4 
G_DIR_SEPARATOR_S Xft.xrdb, TRUE);
-if (G_LIKELY (filename))
+gchar *needle;
+gssize needle_len;
+gchar *found = NULL;
+gsize value_index;
+gchar *end;
+
+if (G_UNLIKELY (value == NULL))
+value = ;
+
+/* update an existing property */
+needle = g_strconcat (key, :, NULL);
+needle_len = strlen (needle);
+if (g_str_has_prefix (props-str, needle))
+found = props-str;
+else
+found = strstr (props-str, needle);
+
+if (found)
 {
-/* create file contents */
-const gchar *xft_rgba = g_value_get_string 
(properties[XSETTING_ENTRY_XFT_RGBA].value);
-
-string = g_string_sized_new (80);
-g_string_append_printf (string, Xft.antialias: %d\n
-Xft.hinting: %d\n
-Xft.rgba: %s\n,
-g_value_get_int 
(properties[XSETTING_ENTRY_XFT_ANTIALIAS].value),
-g_value_get_int 
(properties[XSETTING_ENTRY_XFT_HINTING].value),
-xft_rgba ? xft_rgba : );
-
-if (g_value_get_int (properties[XSETTING_ENTRY_XFT_HINTING].value))
-g_string_append_printf (string, Xft.hintstyle: %s\n, 
g_value_get_string (properties[XSETTING_ENTRY_XFT_HINTSTYLE].value));
-else
-string = g_string_append (string, Xft.hintstyle: hintnone\n);
+end = strchr (found, '\n');
+value_index = (found - props-str) + needle_len + 1;
+g_string_erase (props, value_index, end ? (end - found - needle_len) : 
-1);
+g_string_insert (props, value_index, \n);
+g_string_insert (props, value_index, value);
+}
+else
+{
+

[Xfce4-commits] libxfce4util|libxfce4util-4.7.5 Creating annotated tag libxfce4util-4.7.5

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/libxfce4util-4.7.5
 as new annotated tag
 to ff3ab73278539ca40690bedb371c942257a5edc4 (tag)
   succeeds libxfce4util-4.7.4
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 12:49 +

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Nick Schermer (3):
  Post release tag bump.
  Fix ABI check on ppc (bug #7004).
  Updates for release.

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4util:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to c5ec0e6c2a98e2e1fabf18715bc633efed064eb3 (commit)
   from d9b50aab587e4514696396a693fb6d10cc7cdcb0 (commit)

commit c5ec0e6c2a98e2e1fabf18715bc633efed064eb3
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:47:16 2011 +0100

Updates for release.

 NEWS|5 +
 configure.in.in |4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 9113170..dfc225b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+4.7.5
+=
+- Fix ABI check on ppc (bug #7004).
+- Translation updates (en_BG).
+
 4.7.4
 =
 - Fix wrong capitalization of Xfce.
diff --git a/configure.in.in b/configure.in.in
index 6e2ea0d..95baf12 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -13,10 +13,10 @@ dnl ***
 m4_define([libxfce4util_verinfo], [5:1:1])
 m4_define([libxfce4util_version_major], [4])
 m4_define([libxfce4util_version_minor], [7])
-m4_define([libxfce4util_version_micro], [4])
+m4_define([libxfce4util_version_micro], [5])
 m4_define([libxfce4util_version_nano], [])   dnl leave this empty to have no 
nano version
 m4_define([libxfce4util_version_build], [...@revision@])
-m4_define([libxfce4util_version_tag], [git])
+m4_define([libxfce4util_version_tag], [])
 m4_define([libxfce4util_version], 
[libxfce4util_version_major().libxfce4util_version_minor().libxfce4util_version_micro()ifelse(libxfce4util_version_nano(),
 [], [], [.libxfce4util_version_nano()])ifelse(libxfce4util_version_tag(), 
[git], [libxfce4util_version_tag()-libxfce4util_version_build()], [])])
 
 dnl **
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4util:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to c80b752f5839ac6e1dff79f6e3133d4a24d4868c (commit)
   from c5ec0e6c2a98e2e1fabf18715bc633efed064eb3 (commit)

commit c80b752f5839ac6e1dff79f6e3133d4a24d4868c
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:49:15 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 95baf12..b7b5a1a 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -16,7 +16,7 @@ m4_define([libxfce4util_version_minor], [7])
 m4_define([libxfce4util_version_micro], [5])
 m4_define([libxfce4util_version_nano], [])   dnl leave this empty to have no 
nano version
 m4_define([libxfce4util_version_build], [...@revision@])
-m4_define([libxfce4util_version_tag], [])
+m4_define([libxfce4util_version_tag], [git])
 m4_define([libxfce4util_version], 
[libxfce4util_version_major().libxfce4util_version_minor().libxfce4util_version_micro()ifelse(libxfce4util_version_nano(),
 [], [], [.libxfce4util_version_nano()])ifelse(libxfce4util_version_tag(), 
[git], [libxfce4util_version_tag()-libxfce4util_version_build()], [])])
 
 dnl **
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4ui:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 3727eafbdc7ee8bf5a616602c2bdc94daeba9e46 (commit)
   from 7542e041c65e5027fc799d5a9504ec0a4f062a01 (commit)

commit 3727eafbdc7ee8bf5a616602c2bdc94daeba9e46
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:51:11 2011 +0100

Updates for release.

 NEWS|1 +
 configure.ac.in |4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 0eb8633..3be9c1d 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,7 @@
 =
 - Fix ABI check in ppc (bug #7005).
 - Update default shortcuts for xfce4-display-settings (bug #7036).
+- Translation updates (pt, he, cs, en_BG, nb, ar).
 
 4.7.5
 =
diff --git a/configure.ac.in b/configure.ac.in
index 3d2602d..70ee5cc 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -10,10 +10,10 @@ m4_define([libxfce4ui_verinfo], [0:0:0])
 m4_define([libxfce4ui_version_api], [1])
 m4_define([libxfce4ui_version_major], [4])
 m4_define([libxfce4ui_version_minor], [7])
-m4_define([libxfce4ui_version_micro], [5])
+m4_define([libxfce4ui_version_micro], [6])
 m4_define([libxfce4ui_version_nano], []) dnl leave this empty to have no nano 
version
 m4_define([libxfce4ui_version_build], [...@revision@])
-m4_define([libxfce4ui_version_tag], [git])
+m4_define([libxfce4ui_version_tag], [])
 m4_define([libxfce4ui_version], 
[libxfce4ui_version_major().libxfce4ui_version_minor().libxfce4ui_version_micro()ifelse(libxfce4ui_version_nano(),
 [], [], [.libxfce4ui_version_nano()])ifelse(libxfce4ui_version_tag(), [git], 
[libxfce4ui_version_tag()-libxfce4ui_version_build()], 
[libxfce4ui_version_tag()])])
 
 m4_define([libxfce4kbd_private_verinfo], [0:0:0])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4ui:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 406dcf32d4fdecdb76d31539aef655c11239038b (commit)
   from 3727eafbdc7ee8bf5a616602c2bdc94daeba9e46 (commit)

commit 406dcf32d4fdecdb76d31539aef655c11239038b
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:51:52 2011 +0100

Post release tag bump.

 configure.ac.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 70ee5cc..00e05e0 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -13,7 +13,7 @@ m4_define([libxfce4ui_version_minor], [7])
 m4_define([libxfce4ui_version_micro], [6])
 m4_define([libxfce4ui_version_nano], []) dnl leave this empty to have no nano 
version
 m4_define([libxfce4ui_version_build], [...@revision@])
-m4_define([libxfce4ui_version_tag], [])
+m4_define([libxfce4ui_version_tag], [git])
 m4_define([libxfce4ui_version], 
[libxfce4ui_version_major().libxfce4ui_version_minor().libxfce4ui_version_micro()ifelse(libxfce4ui_version_nano(),
 [], [], [.libxfce4ui_version_nano()])ifelse(libxfce4ui_version_tag(), [git], 
[libxfce4ui_version_tag()-libxfce4ui_version_build()], 
[libxfce4ui_version_tag()])])
 
 m4_define([libxfce4kbd_private_verinfo], [0:0:0])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4ui|libxfce4ui-4.7.6 Creating annotated tag libxfce4ui-4.7.6

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/libxfce4ui-4.7.6
 as new annotated tag
 to 4162403eeb8af8142cba8c95551314226f9f18f5 (tag)
   succeeds libxfce4ui-4.7.5
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 12:51 +

Hezy Amiel (1):
  l10n: New Hebrew translation

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Jérôme Guelfucci (2):
  Update default shortcuts for xfce4-display-settings (bug #7036).
  Update NEWS.

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (3):
  Post release tag bump.
  Fix ABI check in ppc (bug #7005).
  Updates for release.

Sergio Marques (1):
  l10n: Updated Portuguese (pt) translation to 100%

Terje Uriansrud (1):
  l10n: Added norwegian bokmaal transalation.

كريم أولاد الشلحة (1):
  l10n: Arabic translation

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gtk-xfce-engine:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to b24dfe2f83b798a9baf862adcf7d231a04090ef0 (commit)
   from 732438cecaad7cab4fc44a267b8ecf9c32aee9b7 (commit)

commit b24dfe2f83b798a9baf862adcf7d231a04090ef0
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:53:52 2011 +0100

Updates for release.

 NEWS|9 ++---
 configure.in.in |2 +-
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/NEWS b/NEWS
index 142c609..b7142c5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,16 +1,19 @@
+2.7.0
+=
+- Cleanup build files.
+- Small visual update for xfce 4.8, active window decoration color.
+- Fix gtkrc warning (bug #5985).
+
 2.6.0
 ===
-
 - Much compact version of the default theme.
 
 2.5.99.1
 
-
 - Update WM colors to match the new xfwm4 decoration theme
 
 2.5.92
 ==
-
 - Fix bg color being shown under group box title (Bug #1018)
 - Remove README.html files (Bug #3280)
 
diff --git a/configure.in.in b/configure.in.in
index 4641a49..c11290b 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -10,7 +10,7 @@ m4_define([gtk_xfce_engine_version_minor], [7])
 m4_define([gtk_xfce_engine_version_micro], [0])
 m4_define([gtk_xfce_engine_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([gtk_xfce_engine_version_build], [...@revision@])
-m4_define([gtk_xfce_engine_version_tag],   [git])
+m4_define([gtk_xfce_engine_version_tag],   [])
 m4_define([gtk_xfce_engine_version], 
[gtk_xfce_engine_version_major().gtk_xfce_engine_version_minor().gtk_xfce_engine_version_micro()ifelse(gtk_xfce_engine_version_nano(),
 [], [], 
[.gtk_xfce_engine_version_nano()])ifelse(gtk_xfce_engine_version_tag(), [git], 
[gtk_xfce_engine_version_tag()-gtk_xfce_engine_version_build()], 
[gtk_xfce_engine_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gtk-xfce-engine:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to b4d9bfb2f8f6ecf3c5ea64042ccec9512555b51d (commit)
   from b24dfe2f83b798a9baf862adcf7d231a04090ef0 (commit)

commit b4d9bfb2f8f6ecf3c5ea64042ccec9512555b51d
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:55:28 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index c11290b..4641a49 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -10,7 +10,7 @@ m4_define([gtk_xfce_engine_version_minor], [7])
 m4_define([gtk_xfce_engine_version_micro], [0])
 m4_define([gtk_xfce_engine_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([gtk_xfce_engine_version_build], [...@revision@])
-m4_define([gtk_xfce_engine_version_tag],   [])
+m4_define([gtk_xfce_engine_version_tag],   [git])
 m4_define([gtk_xfce_engine_version], 
[gtk_xfce_engine_version_major().gtk_xfce_engine_version_minor().gtk_xfce_engine_version_micro()ifelse(gtk_xfce_engine_version_nano(),
 [], [], 
[.gtk_xfce_engine_version_nano()])ifelse(gtk_xfce_engine_version_tag(), [git], 
[gtk_xfce_engine_version_tag()-gtk_xfce_engine_version_build()], 
[gtk_xfce_engine_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gtk-xfce-engine|gtk-xfce-engine-2.7.0 Creating annotated tag gtk-xfce-engine-2.7.0

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/gtk-xfce-engine-2.7.0
 as new annotated tag
 to 59384b2d3a7cc446f4221bc109ff9d12bc58e169 (tag)
   succeeds xfce-4.6.0
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 12:55 +

Brian J. Tarricone (1):
  add module description file

Nick Schermer (2):
  Cleanup build files.
  Updates for release.

Olivier Fourdan (2):
  Fix gtkrc warning (bug #5985)
  Small visual update for xfce 4.8, active window decoration color

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dev-tools:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to e41279eac84b92b1e26cdffb999544177090c0d3 (commit)
   from e9f246a0486cc03168f7a8b47fadb64a9843da30 (commit)

commit e41279eac84b92b1e26cdffb999544177090c0d3
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:57:23 2011 +0100

Updates for release.

 NEWS|6 ++
 configure.in.in |2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/NEWS b/NEWS
index 3e02eab..e627d4e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+4.7.4
+=
+- Check for glibtoolize.
+- Use printf instead of echo -n.
+- Fix typo.
+
 4.7.3
 =
 - Build ChangeLog from GIT.
diff --git a/configure.in.in b/configure.in.in
index c8af429..696c9c4 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -11,7 +11,7 @@ dnl *** Version information ***
 dnl ***
 m4_define([xdt_version_major], [4])
 m4_define([xdt_version_minor], [7])
-m4_define([xdt_version_micro], [3])
+m4_define([xdt_version_micro], [4])
 m4_define([xdt_version_nano], [])
 m4_define([xdt_version_build], [...@revision@])
 m4_define([xdt_version_tag], [])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dev-tools|xfce4-dev-tools-4.7.4 Creating annotated tag xfce4-dev-tools-4.7.4

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfce4-dev-tools-4.7.4
 as new annotated tag
 to f192833071bc039fa9157a175ee788d8b0256a3d (tag)
   succeeds xfce4-dev-tools-4.7.3
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 12:57 +

Benedikt Meurer (3):
  Use printf instead of echo -n.
  Merge remote branch 'origin'
  Check for glibtoolize.

Enrico Tröger (1):
  Fix typo.

Nick Schermer (1):
  Updates for release.

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dev-tools:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 3a8c824760c8d63f1438e219799e40a5b191d699 (commit)
   from e41279eac84b92b1e26cdffb999544177090c0d3 (commit)

commit 3a8c824760c8d63f1438e219799e40a5b191d699
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:58:09 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 696c9c4..488c0db 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -14,7 +14,7 @@ m4_define([xdt_version_minor], [7])
 m4_define([xdt_version_micro], [4])
 m4_define([xdt_version_nano], [])
 m4_define([xdt_version_build], [...@revision@])
-m4_define([xdt_version_tag], [])
+m4_define([xdt_version_tag], [git])
 m4_define([xdt_version], 
[xdt_version_major().xdt_version_minor().xdt_version_micro()ifelse(xdt_version_nano(),
 [], [], [.xdt_version_nano()])ifelse(xdt_version_tag(), [git], 
[xdt_version_tag()-xdt_version_build()], [])])
 
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] exo:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 4152b2110bc0fc5bca5f767f0c809b6e425ffd21 (commit)
   from 932733fd7b53156dbe42bb79014c4f3532404ba5 (commit)

commit 4152b2110bc0fc5bca5f767f0c809b6e425ffd21
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:00:53 2011 +0100

Updates for release.

 NEWS|8 
 configure.in.in |4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 5fdca0f..5e4af82 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+0.5.6
+=
+- Set application name for Thunar loop detection.
+- Fix ABI check on ppc (bug #7008).
+- Quote filenames with a space in the desktop editor (bug #6951).
+- Translation updates (zh_CN, pt_BR, de, hu, pt, de, cs, en_GB,
+  nb, sv, ar).
+
 0.5.5
 =
 - Fix opening of URIs with spaces in claws-mail and sylpheed.
diff --git a/configure.in.in b/configure.in.in
index 15541ba..b122731 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -12,10 +12,10 @@ m4_define([libexo_verinfo], [0:0:0])
 m4_define([libexo_version_api], [1])
 m4_define([libexo_version_major], [0])
 m4_define([libexo_version_minor], [5])
-m4_define([libexo_version_micro], [5])
+m4_define([libexo_version_micro], [6])
 m4_define([libexo_version_nano], [])
 m4_define([libexo_version_build], [...@revision@])
-m4_define([libexo_version_tag], [git])
+m4_define([libexo_version_tag], [])
 m4_define([libexo_version], 
[libexo_version_major().libexo_version_minor().libexo_version_micro()ifelse(libexo_version_nano(),
 [], [], [.libexo_version_nano()])ifelse(libexo_version_tag(), [git], 
[libexo_version_tag()-libexo_version_build()], [libexo_version_tag()])])
 
 dnl 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] exo:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to d2b7085160932053894948b7ca7d3b1c0a32faca (commit)
   from 4152b2110bc0fc5bca5f767f0c809b6e425ffd21 (commit)

commit d2b7085160932053894948b7ca7d3b1c0a32faca
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:01:29 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index b122731..ee54c5f 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -15,7 +15,7 @@ m4_define([libexo_version_minor], [5])
 m4_define([libexo_version_micro], [6])
 m4_define([libexo_version_nano], [])
 m4_define([libexo_version_build], [...@revision@])
-m4_define([libexo_version_tag], [])
+m4_define([libexo_version_tag], [git])
 m4_define([libexo_version], 
[libexo_version_major().libexo_version_minor().libexo_version_micro()ifelse(libexo_version_nano(),
 [], [], [.libexo_version_nano()])ifelse(libexo_version_tag(), [git], 
[libexo_version_tag()-libexo_version_build()], [libexo_version_tag()])])
 
 dnl 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] exo|exo-0.5.6 Creating annotated tag exo-0.5.6

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/exo-0.5.6
 as new annotated tag
 to edd1d687271a5c5a22b817a1fa0374faf2f43bec (tag)
   succeeds exo-0.5.5
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:01 +

Daniel Nylander (2):
  l10n: Updated Swedish (sv) translation to 99%
  l10n: Updated Swedish (sv) translation to 100%

Gabor Kelemen (1):
  l10n: Updated Hungarian (hu) translation to 100%

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (5):
  Post release tag bump.
  Set application name for Thunar loop detection.
  Fix ABI check on ppc (bug #7008).
  Quote filenames with a space in the desktop editor (bug #6951).
  Updates for release.

Nuno Miguel (3):
  l10n: Updated Portuguese (pt) translation to 100%
  l10n: Updated Portuguese (pt) translation to 100%
  l10n: Updated Portuguese (pt) translation to 100%

Paul Seyfert (2):
  l10n: Updated German (de) translation to 100%
  l10n: Updated German (de) translation to 100%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

Xu Meihong (1):
  l10n: Updated Chinese (China) (zh_CN) translation to 100%

tschertel (1):
  l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%

كريم أولاد الشلحة (1):
  l10n: Updated Arabic (ar) translation to 70%

كريم اولاد الشلحة (1):
  l10n: Updated Arabic (ar) translation to 4%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 916cf8fc81ad37dc748c852e5071e42579de2c72 (commit)
   from 5469150da6c22947ecc19a84b2eb169bb8b0e18f (commit)

commit 916cf8fc81ad37dc748c852e5071e42579de2c72
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:03:32 2011 +0100

Updates for release.

 NEWS|7 +++
 configure.in.in |4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index a7f9d46..de54fab 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,10 @@
+4.7.3
+=
+- Fix missing include.
+- Do not register to menu else the panel never hides (bug #7020).
+- Fix xfce4-session-logout --halt and --reboot (bug #5032).
+- Translation updates (nb, cs, en_GB, sv, hr, pt).
+
 4.7.2
 =
 - Do not try unix-session authorization with PolicyKit as this 
diff --git a/configure.in.in b/configure.in.in
index da8f05d..22c9cd0 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -8,10 +8,10 @@ dnl
 dnl Version information
 m4_define([xfsm_version_major], [4])
 m4_define([xfsm_version_minor], [7])
-m4_define([xfsm_version_micro], [2])
+m4_define([xfsm_version_micro], [3])
 m4_define([xfsm_version_nano], []) dnl leave this empty to have no nano version
 m4_define([xfsm_version_build], [...@revision@])
-m4_define([xfsm_version_tag], [git])
+m4_define([xfsm_version_tag], [])
 m4_define([xfsm_version], 
[xfsm_version_major().xfsm_version_minor().xfsm_version_micro()ifelse(xfsm_version_nano(),
 [], [], [.xfsm_version_nano()])ifelse(xfsm_version_tag(), [git], 
[xfsm_version_tag()-xfsm_version_build()], [xfsm_version_tag()])])
 
 m4_define([xfsm_debug_default], [ifelse(xfsm_version_tag(), [git], [full], 
[minimum])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to b39a96a4d86d0a84b79dea3fa1cedb3c340b7274 (commit)
   from 916cf8fc81ad37dc748c852e5071e42579de2c72 (commit)

commit b39a96a4d86d0a84b79dea3fa1cedb3c340b7274
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:05:10 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 22c9cd0..84a6e65 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -11,7 +11,7 @@ m4_define([xfsm_version_minor], [7])
 m4_define([xfsm_version_micro], [3])
 m4_define([xfsm_version_nano], []) dnl leave this empty to have no nano version
 m4_define([xfsm_version_build], [...@revision@])
-m4_define([xfsm_version_tag], [])
+m4_define([xfsm_version_tag], [git])
 m4_define([xfsm_version], 
[xfsm_version_major().xfsm_version_minor().xfsm_version_micro()ifelse(xfsm_version_nano(),
 [], [], [.xfsm_version_nano()])ifelse(xfsm_version_tag(), [git], 
[xfsm_version_tag()-xfsm_version_build()], [xfsm_version_tag()])])
 
 m4_define([xfsm_debug_default], [ifelse(xfsm_version_tag(), [git], [full], 
[minimum])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session|xfce4-session-4.7.3 Creating annotated tag xfce4-session-4.7.3

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfce4-session-4.7.3
 as new annotated tag
 to 64bebdafc2e2d9b753d07bd1282490ae203210a9 (tag)
   succeeds xfce4-session-4.7.2
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:04 +

Daniel Nylander (1):
  l10n: Updated Swedish (sv) translation to 100%

Ivica  Kolić (1):
  l10n: Updated Croatian (hr) translation to 100%

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Jérôme Guelfucci (1):
  Fix xfce4-session-logout --halt and --reboot (bug #5032).

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (4):
  Post release tag bump.
  Fix missing include.
  Do not register to menu else the panel never hides (bug #7020).
  Updates for release.

Nuno Miguel (1):
  l10n: Updated Portuguese (pt) translation to 100%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to f05a8116aea30d6f45941e391918148fe39fdaf7 (commit)
   from f94d7a3e6d1997b8c564dacbc2bbf6fb0fed6576 (commit)

commit f05a8116aea30d6f45941e391918148fe39fdaf7
Author: Robert Hartl hartl.rob...@gmail.com
Date:   Sun Jan 2 14:15:38 2011 +0100

l10n: Updated Slovak (sk) translation to 100%

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

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

 po/sk.po |   69 +++--
 1 files changed, 35 insertions(+), 34 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index c5215f6..c1bf631 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-mount-plugin\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-01-16 12:37-0500\n
+POT-Creation-Date: 2011-01-02 11:05+\n
 PO-Revision-Date: 2010-03-26 20:40+0100\n
 Last-Translator: Robert Hartl hartl.rob...@gmail.com\n
 Language-Team: Slovak sk-i...@lists.linux.sk\n
@@ -84,79 +84,80 @@ msgstr bod pripojenia: %s\n
 msgid not mounted\n
 msgstr nepripojené\n
 
-#: ../panel-plugin/devices.c:245 ../panel-plugin/devices.c:294
+#: ../panel-plugin/devices.c:260 ../panel-plugin/devices.c:309
 msgid Mount Plugin: Error executing command.
 msgstr Zásuvný modul Pripojené zväzky: Chyba pri spúšťaní príkazu.
 
-#: ../panel-plugin/mount-plugin.c:54
+#: ../panel-plugin/mount-plugin.c:57
 #, c-format
 msgid The device \%s\ should be removable safely now.
 msgstr Zariadenie \%s\ môžno teraz bezpečne odobrať.
 
-#: ../panel-plugin/mount-plugin.c:57
-msgid An error occurred. The device should not be removed!
-msgstr Nastala chyba. Zariadenie by nemalo byť odobrané!
+#: ../panel-plugin/mount-plugin.c:60
+#, c-format
+msgid An error occurred. The device \%s\ should not be removed!
+msgstr Nastala chyba. Zariadenie \%s\ by nemalo byť odobrané!
 
-#: ../panel-plugin/mount-plugin.c:249
+#: ../panel-plugin/mount-plugin.c:252
 msgid span foreground=\#FF\not mounted/span
 msgstr span foreground=\#FF\nepripojené/span
 
-#: ../panel-plugin/mount-plugin.c:557
+#: ../panel-plugin/mount-plugin.c:560
 msgid devices
 msgstr zariadenia
 
-#: ../panel-plugin/mount-plugin.c:724
+#: ../panel-plugin/mount-plugin.c:727
 msgid Mount Plugin
 msgstr Zásuvný modul Pripojené zväzky
 
-#: ../panel-plugin/mount-plugin.c:780
+#: ../panel-plugin/mount-plugin.c:783
 msgid This is only useful and recommended if you specify \sync\ as part of 
the \unmount\ command string.
 msgstr Toto je užitočné a zároveň sa odporúča, ak ste doplnili reťazec „sync“ 
ako súčasť reťazca pre odpojenie „unmount“.
 
-#: ../panel-plugin/mount-plugin.c:785
+#: ../panel-plugin/mount-plugin.c:788
 msgid Show _message after unmount
 msgstr Zobraziť _správu po odpojení
 
-#: ../panel-plugin/mount-plugin.c:797
+#: ../panel-plugin/mount-plugin.c:800
 msgid You can specify a distinct icon to be displayed in the panel.
 msgstr Môžete určiť rôzne ikony pre zobrazovanie v paneli.
 
-#: ../panel-plugin/mount-plugin.c:804
+#: ../panel-plugin/mount-plugin.c:807
 msgid Icon:
 msgstr Ikona:
 
-#: ../panel-plugin/mount-plugin.c:808
+#: ../panel-plugin/mount-plugin.c:811
 msgid Select an image
 msgstr Vyberte obrázok
 
-#: ../panel-plugin/mount-plugin.c:815
+#: ../panel-plugin/mount-plugin.c:818
 msgid _General
 msgstr _Všeobecné
 
-#: ../panel-plugin/mount-plugin.c:830
+#: ../panel-plugin/mount-plugin.c:833
 #, c-format
 msgid 
 This command will be executed after mounting the device with the mount point 
of the device as argument.\n
-If you are unsure what to insert, try \thunar %m\.\n
+If you are unsure what to insert, try \exo-open %m\.\n
 '%d' can be used to specify the device, '%m' for the mountpoint.
 msgstr 
 Tento príkaz bude spustený po pripojení zariadenia s umiestnením prípojného 
bodu ako parametrom.\n
-Ak si nie ste istí, aký údaj vložiť, skúste „thunar %m“.\n
+Ak si nie ste istí, aký údaj vložiť, skúste „exo-open %m“.\n
 '%d' je možné použiť pre upresnenie zariadenia, '%m' pre bod pripojenia.
 
-#: ../panel-plugin/mount-plugin.c:840
+#: ../panel-plugin/mount-plugin.c:843
 msgid _Execute after mounting:
 msgstr _Spustiť po pripojení:
 
-#: ../panel-plugin/mount-plugin.c:863
+#: ../panel-plugin/mount-plugin.c:866
 msgid WARNING: These options are for experts only! If you do not know what 
they may be good for, keep your hands off!
 msgstr VAROVANIE: Tieto voľby sú len pre pokročilých užívateľov! Ak neviete 
na čo slúžia, nemeňte ich!
 
-#: ../panel-plugin/mount-plugin.c:868
+#: ../panel-plugin/mount-plugin.c:871
 msgid _Custom commands
 msgstr _Vlastné príkazy
 
-#: ../panel-plugin/mount-plugin.c:887
+#: ../panel-plugin/mount-plugin.c:890
 #, c-format
 msgid 
 Most users will only want to prepend \sudo\ to both commands or prepend 
\sync %d \ to the \unmount %d\ command.\n
@@ -165,43 +166,43 @@ msgstr 
 Väčšina užívateľov len doplní pred oba názvy reťazec „sudo“ alebo reťazec 
„sync %d “ pred príkaz „unmount %d“.\n
 

[Xfce4-commits] xfce-utils:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 6fafdbb6680f2ce02c2c9f1962c9cf009afcd6f0 (commit)
   from 8d43152393c1aa533ba05a1dd065abfbed76963a (commit)

commit 6fafdbb6680f2ce02c2c9f1962c9cf009afcd6f0
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:21:04 2011 +0100

Updates for release.

 NEWS|8 +++-
 configure.in.in |4 ++--
 2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 145a52c..8750f0e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,11 @@
-4.7.x
+4.7.4
 =
+- Send the xfrun4 caller environ over dbus (bug #6927).
+- Don't show popup completion if there is a single match.
+- Add an icon to the xfrun4 window.
+- Append Xfce path to XDG_DATA_DIRS (bug #7040).
+- Translation updates (he, de, zh_TW, sk, ru, pt, cs, ja,
+  en_GB, sv, id, ug).
 
 
 4.7.3
diff --git a/configure.in.in b/configure.in.in
index a349451..29da69f 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -11,10 +11,10 @@ dnl
 dnl Version information
 m4_define([xfce_utils_version_major], [4])
 m4_define([xfce_utils_version_minor], [7])
-m4_define([xfce_utils_version_micro], [3])
+m4_define([xfce_utils_version_micro], [4])
 m4_define([xfce_utils_version_nano],  []) dnl leave this empty to have no nano 
version
 m4_define([xfce_utils_version_build], [...@revision@])
-m4_define([xfce_utils_version_tag],   [git])
+m4_define([xfce_utils_version_tag],   [])
 m4_define([xfce_utils_version], 
[xfce_utils_version_major().xfce_utils_version_minor().xfce_utils_version_micro()ifelse(xfce_utils_version_nano(),
 [], [], [.xfce_utils_version_nano()])ifelse(xfce_utils_version_tag(), [git], 
[xfce_utils_version_tag()-xfce_utils_version_build()], 
[xfce_utils_version_tag()])])
 
 dnl Debugging support for GIT snapshots
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 5d8bdaad20fcc15a5c194c9647ea3b745e5e28ea (commit)
   from 6fafdbb6680f2ce02c2c9f1962c9cf009afcd6f0 (commit)

commit 5d8bdaad20fcc15a5c194c9647ea3b745e5e28ea
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:21:42 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 29da69f..88093b9 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -14,7 +14,7 @@ m4_define([xfce_utils_version_minor], [7])
 m4_define([xfce_utils_version_micro], [4])
 m4_define([xfce_utils_version_nano],  []) dnl leave this empty to have no nano 
version
 m4_define([xfce_utils_version_build], [...@revision@])
-m4_define([xfce_utils_version_tag],   [])
+m4_define([xfce_utils_version_tag],   [git])
 m4_define([xfce_utils_version], 
[xfce_utils_version_major().xfce_utils_version_minor().xfce_utils_version_micro()ifelse(xfce_utils_version_nano(),
 [], [], [.xfce_utils_version_nano()])ifelse(xfce_utils_version_tag(), [git], 
[xfce_utils_version_tag()-xfce_utils_version_build()], 
[xfce_utils_version_tag()])])
 
 dnl Debugging support for GIT snapshots
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils|xfce-utils-4.7.4 Creating annotated tag xfce-utils-4.7.4

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfce-utils-4.7.4
 as new annotated tag
 to a3782e46d4d5e94dc271567038444a266ba99e66 (tag)
   succeeds xfce-utils-4.7.3
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:23 +

Aleksandr Ponomarenko (1):
  l10n: Updated Russian (ru) translation to 72%

Andhika Padmawan (1):
  l10n: Updated Indonesian (id) translation to 100%

Cheng-Chia Tseng (1):
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

Daniel Nylander (5):
  l10n: Updated Swedish (sv) translation to 51%
  l10n: Updated Swedish (sv) translation to 65%
  l10n: Updated Swedish (sv) translation to 80%
  l10n: Updated Swedish (sv) translation to 95%
  l10n: Updated Swedish (sv) translation to 100%

Fabian Nowak (1):
  l10n: Updated German (de) translation to 100%

Gheyret Kenji (1):
  l10n: Updated Uyghur (ug) translation to 1%

Jannis Pohlmann (1):
  Post-release version bump.

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Jérôme Guelfucci (4):
  Don't show popup completion if there is a single match.
  Add an icon to the window.
  No need to select the text manually.
  Revert No need to select the text manually.

Masato Hashimoto (1):
  l10n: Updated Japanese (ja) translation to 100%

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (3):
  Send the caller environ over dbus (bug #6927).
  Append Xfce path to XDG_DATA_DIRS (bug #7040).
  Updates for release.

Nuno Miguel (2):
  l10n: Updated Portuguese (pt) translation to 100%
  l10n: Updated Portuguese (pt) translation to 100%

Paul Seyfert (1):
  l10n: Updated German (de) translation to 86%

Robert Hartl (1):
  l10n: Updated Slovak (sk) translation to 79%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

Transifex (4):
  Update translators.
  Update translators, week %W.
  Update translators, week %W.
  Update translators, week 00.

Yaron Shahrabani (1):
  l10n: Updated Hebrew (he) translation to 100%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 8416e45d42684860e5b2f05f15635c80f8fa2f61 (commit)
   from c445f4943f3e08caf173e34cc00fdee9c98f284a (commit)

commit 8416e45d42684860e5b2f05f15635c80f8fa2f61
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:27:47 2011 +0100

Post release tag bump.

 NEWS|2 +-
 configure.ac.in |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 867ab87..1325dfb 100644
--- a/NEWS
+++ b/NEWS
@@ -11,7 +11,7 @@
 - Fix bug #6902.
 - Fix application cycling.
 - Translation updates (zh_TW, fi, uk, ca, nb, cs, ja, el, de,
-  en_GB, sv, id, pt);
+  en_GB, sv, id, pt).
 
 
 4.7.3
diff --git a/configure.ac.in b/configure.ac.in
index fa5d79c..1d46969 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -7,7 +7,7 @@ m4_define([xfwm4_version_major], [4])
 m4_define([xfwm4_version_minor], [7])
 m4_define([xfwm4_version_micro], [4])
 m4_define([xfwm4_version_build], [...@revision@])
-m4_define([xfwm4_version_tag],   [])
+m4_define([xfwm4_version_tag],   [git])
 m4_define([xfwm4_version], 
[xfwm4_version_major().xfwm4_version_minor().xfwm4_version_micro()ifelse(xfwm4_version_tag(),
 [git], [xfwm4_version_tag().xfwm4_version_build()], [xfwm4_version_tag()])])
 
 m4_define([gtk_minimum_version], [2.14.0])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to c445f4943f3e08caf173e34cc00fdee9c98f284a (commit)
   from 62b89ed46bcc0f2c13ce9183bbe77f060beb7c69 (commit)

commit c445f4943f3e08caf173e34cc00fdee9c98f284a
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:26:53 2011 +0100

Updates for release.

 NEWS|   16 
 configure.ac.in |4 ++--
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 3719f64..867ab87 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+4.7.4
+=
+- Fix bug #6651 Shape Mask Changes not Immediately Recognized by Xfwm4.
+- Use Xsettings standard double-click-distance (bug 6334).
+- Fix bug #6334.
+- Bug 6334: Use lower prio for double click timeout.
+- Thinner bottom frame.
+- Double-click on edges trigger window fill in any given direction.
+- Fix bug 6989.
+- Fix bug #6589.
+- Fix bug #6902.
+- Fix application cycling.
+- Translation updates (zh_TW, fi, uk, ca, nb, cs, ja, el, de,
+  en_GB, sv, id, pt);
+
+
 4.7.3
 =
 - Panel won't focus entries in focus follow mode (bug #6649).
diff --git a/configure.ac.in b/configure.ac.in
index 85e2da2..fa5d79c 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -5,9 +5,9 @@ dnl
 
 m4_define([xfwm4_version_major], [4])
 m4_define([xfwm4_version_minor], [7])
-m4_define([xfwm4_version_micro], [3])
+m4_define([xfwm4_version_micro], [4])
 m4_define([xfwm4_version_build], [...@revision@])
-m4_define([xfwm4_version_tag],   [git])
+m4_define([xfwm4_version_tag],   [])
 m4_define([xfwm4_version], 
[xfwm4_version_major().xfwm4_version_minor().xfwm4_version_micro()ifelse(xfwm4_version_tag(),
 [git], [xfwm4_version_tag().xfwm4_version_build()], [xfwm4_version_tag()])])
 
 m4_define([gtk_minimum_version], [2.14.0])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4|xfwm4-4.7.4 Creating annotated tag xfwm4-4.7.4

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfwm4-4.7.4
 as new annotated tag
 to 3b5b404d6af24a163cf9cad1ccad04bb13abfe99 (tag)
   succeeds xfwm4-4.7.3
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:27 +

Andhika Padmawan (1):
  l10n: Updated Indonesian (id) translation to 100%

Cheng-Chia Tseng (1):
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

Daniel Nylander (4):
  l10n: Updated Swedish (sv) translation to 98%
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%

Dmitry Nikitin (1):
  l10n: Updated Ukrainian (uk) translation to 100%

Fabian Nowak (1):
  l10n: Updated German (de) translation to 100%

Harald Servat (1):
  l10n: Updated Catalan (Valencian) (ca) translation to 100%

Jari Rahkonen (1):
  l10n: Updated Finnish (fi) translation to 100%

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Masato Hashimoto (1):
  l10n: Updated Japanese (ja) translation to 100%

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (2):
  Post release tag bump.
  Updates for release.

Nuno Miguel (1):
  l10n: Updated Portuguese (pt) translation to 100%

Olivier Fourdan (12):
  Fix bug #6651 Shape Mask Changes not Immediately Recognized by Xfwm4
  Use XSettings standard double-click-distance (bug 6334)
  Fix bug #6334
  Bug 6334: Use lower prio for double click timeout
  Thinner bottom frame.
  Double-click on edges trigger window fill in any given direction
  Use correct event type may help
  Fix bug 6989
  Fix bug #6589
  Fix bug #6902
  Fix application cycling
  Mass update: Update (c) year

Stavros Giannouris (1):
  l10n: Updated Greek (el) translation to 97%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

Yarema aka Knedlyk (1):
  l10n: Updated Ukrainian (uk) translation to 97%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-appfinder:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to bb6d842f9afe637983d0d22eab21f351699b4f53 (commit)
   from 3a476139fa2f5998e55ae3417fb56bf470922141 (commit)

commit bb6d842f9afe637983d0d22eab21f351699b4f53
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:30:56 2011 +0100

Updates for release.

 NEWS|5 +
 configure.in.in |4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index bfa5b12..93ecda8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+4.7.2
+=
+- Translation updates (pt, ja, he, lt, zh_CN, pt_BR, sk, cs,
+  en_GB, nb, hr, pl, ar).
+
 4.7.1
 =
 - Don't watch category changes in xfconf (bug #6043).
diff --git a/configure.in.in b/configure.in.in
index f12fb6d..3555fb3 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -8,10 +8,10 @@ dnl *** Version information ***
 dnl ***
 m4_define([xfce4_appfinder_version_major], [4])
 m4_define([xfce4_appfinder_version_minor], [7])
-m4_define([xfce4_appfinder_version_micro], [1])
+m4_define([xfce4_appfinder_version_micro], [2])
 m4_define([xfce4_appfinder_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([xfce4_appfinder_version_build], [...@revision@])
-m4_define([xfce4_appfinder_version_tag],   [git])
+m4_define([xfce4_appfinder_version_tag],   [])
 m4_define([xfce4_appfinder_version], 
[xfce4_appfinder_version_major().xfce4_appfinder_version_minor().xfce4_appfinder_version_micro()ifelse(xfce4_appfinder_version_nano(),
 [], [], 
[.xfce4_appfinder_version_nano()])ifelse(xfce4_appfinder_version_tag(), [git], 
[xfce4_appfinder_version_tag()-xfce4_appfinder_version_build()], 
[xfce4_appfinder_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-appfinder:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 48aa086e014bbc0c9dd7cdc5b42af16dfff55135 (commit)
   from bb6d842f9afe637983d0d22eab21f351699b4f53 (commit)

commit 48aa086e014bbc0c9dd7cdc5b42af16dfff55135
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:31:48 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 3555fb3..22e9fb5 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -11,7 +11,7 @@ m4_define([xfce4_appfinder_version_minor], [7])
 m4_define([xfce4_appfinder_version_micro], [2])
 m4_define([xfce4_appfinder_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([xfce4_appfinder_version_build], [...@revision@])
-m4_define([xfce4_appfinder_version_tag],   [])
+m4_define([xfce4_appfinder_version_tag],   [git])
 m4_define([xfce4_appfinder_version], 
[xfce4_appfinder_version_major().xfce4_appfinder_version_minor().xfce4_appfinder_version_micro()ifelse(xfce4_appfinder_version_nano(),
 [], [], 
[.xfce4_appfinder_version_nano()])ifelse(xfce4_appfinder_version_tag(), [git], 
[xfce4_appfinder_version_tag()-xfce4_appfinder_version_build()], 
[xfce4_appfinder_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-appfinder|xfce4-appfinder-4.7.2 Creating annotated tag xfce4-appfinder-4.7.2

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfce4-appfinder-4.7.2
 as new annotated tag
 to 74ccdfb4b438d1560af8d2db78874a871a757778 (tag)
   succeeds xfce4-appfinder-4.7.1
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:31 +

Ivica  Kolić (1):
  l10n: Updated Croatian (hr) translation to 89%

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (3):
  Post release tag bump.
  Add module.xml.
  Updates for release.

Nobuhiro Iwamatsu (1):
  l10n: Updated Japanese (ja) translation to 100%

Piotr Sokół (2):
  l10n: Updated Polish (pl) translation to 100%
  l10n: Updated Polish (pl) translation to 100%

Ričardas Vasiulis (2):
  l10n: Updated Lithuanian (lt) translation to 89%
  l10n: Updated Lithuanian (lt) translation to 89%

Robert Hartl (2):
  l10n: Updated Slovak (sk) translation to 100%
  l10n: Updated Slovak (sk) translation to 100%

Sergio Marques (1):
  l10n: Updated Portuguese (pt) translation to 100%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

Xu Meihong (1):
  l10n: Updated Chinese (China) (zh_CN) translation to 100%

Yaron Shahrabani (2):
  l10n: Updated Hebrew (he) translation to 100%
  l10n: Updated Hebrew (he) translation to 100%

tschertel (1):
  l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%

كريم أولاد الشلحة (1):
  l10n: Updated Arabic (ar) translation to 100%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-battery-plugin:master l10n: Slovak translation

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 1888c534a9a7ea91a3f4b7546df965805a63d63e (commit)
   from 517c071847fe153c665f436743d2708205843e71 (commit)

commit 1888c534a9a7ea91a3f4b7546df965805a63d63e
Author: Robert Hartl hartl.rob...@gmail.com
Date:   Sun Jan 2 14:37:10 2011 +0100

l10n: Slovak translation

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

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

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

diff --git a/po/sk.po b/po/sk.po
new file mode 100644
index 000..eba8511
--- /dev/null
+++ b/po/sk.po
@@ -0,0 +1,154 @@
+# Slovak translation of xfce4-battery-plugin.
+# Copyright (C) YEAR THE xfce4-battery-plugin'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the xfce4-battery-plugin 
package.
+# Robert Hartl hartl.rob...@gmail.com, 2011.
+#
+msgid 
+msgstr 
+Project-Id-Version: xfce4-battery-plugin\n
+Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
+POT-Creation-Date: 2011-01-02 11:05+\n
+PO-Revision-Date: 2011-01-02 14:36+0100\n
+Last-Translator: Robert Hartl hartl.rob...@gmail.com\n
+Language-Team: Slovak xfce-i...@xfce.org\n
+MIME-Version: 1.0\n
+Content-Type: text/plain; charset=utf-8\n
+Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
+
+#: ../panel-plugin/battery.c:500
+msgid (No battery, AC on-line)
+msgstr (Bez batérie, napájané zo siete)
+
+#: ../panel-plugin/battery.c:502
+msgid (Charging from AC)
+msgstr (Nabíjanie zo siete)
+
+#: ../panel-plugin/battery.c:502
+msgid (AC on-line)
+msgstr (Pripojené k sieti)
+
+#: ../panel-plugin/battery.c:512
+#, c-format
+msgid %d%% (%02d:%02d) remaining
+msgstr Ostáva %d%% (%02d:%02d)
+
+#: ../panel-plugin/battery.c:514
+#, c-format
+msgid %02d:%02d remaining
+msgstr Ostáva %02d:%02d
+
+#: ../panel-plugin/battery.c:516
+#, c-format
+msgid %d%% remaining
+msgstr Ostáva %d%%
+
+#: ../panel-plugin/battery.c:518
+#, c-format
+msgid AC off-line
+msgstr Napájanie odpojené
+
+#: ../panel-plugin/battery.c:581
+msgid 
+WARNING: Your battery has reached critical status. You should plug in or 
+shutdown your computer now to avoid possible data loss.
+msgstr 
+
+#: ../panel-plugin/battery.c:599
+msgid 
+WARNING: Your battery is running low. You should consider plugging in or 
+shutting down your computer soon to avoid possible data loss.
+msgstr 
+
+#: ../panel-plugin/battery.c:686
+msgid Battery
+msgstr Batéria
+
+#: ../panel-plugin/battery.c:1112
+msgid Select file
+msgstr Vyberte súbor
+
+#: ../panel-plugin/battery.c:1153
+msgid Select command
+msgstr Vyberte príkaz
+
+#: ../panel-plugin/battery.c:1172
+#, c-format
+msgid Unable to open the following url: %s
+msgstr Nemožno otvoriť následujúcu adresu url: %s
+
+#: ../panel-plugin/battery.c:1196 ../panel-plugin/battmon.desktop.in.in.h:1
+msgid Battery Monitor
+msgstr Sledovanie batérie
+
+#: ../panel-plugin/battery.c:1225
+msgid Low percentage:
+msgstr Nízke percento
+
+#: ../panel-plugin/battery.c:1236
+msgid Critical percentage:
+msgstr Kritické percento:
+
+#: ../panel-plugin/battery.c:1249
+msgid Low battery action:
+msgstr Akcia pri nízkom stave:
+
+#: ../panel-plugin/battery.c:1255 ../panel-plugin/battery.c:1296
+msgid Do nothing
+msgstr Nerobiť nič
+
+#: ../panel-plugin/battery.c:1257 ../panel-plugin/battery.c:1298
+msgid Display a warning message
+msgstr Zobraziť varovnú správu
+
+#: ../panel-plugin/battery.c:1259 ../panel-plugin/battery.c:1300
+msgid Run command
+msgstr Spustiť príkaz
+
+#: ../panel-plugin/battery.c:1261 ../panel-plugin/battery.c:1302
+msgid Run command in terminal
+msgstr Spustiť príkaz v terminali
+
+#: ../panel-plugin/battery.c:1274 ../panel-plugin/battery.c:1314
+msgid Command:
+msgstr Príkaz:
+
+#: ../panel-plugin/battery.c:1290
+msgid Critical battery action:
+msgstr Akcia pri kritickom stave:
+
+#: ../panel-plugin/battery.c:1337
+msgid Display label
+msgstr Zobraziť názov
+
+#: ../panel-plugin/battery.c:1340
+msgid Display percentage
+msgstr Zobraziť údaj v percentách
+
+#: ../panel-plugin/battery.c:1343
+msgid Display time
+msgstr Zobraziť čas
+
+#: ../panel-plugin/battery.c:1346
+msgid Hide time/percentage when full
+msgstr Skryť čas alebo percentá pri plnom stave
+
+#: ../panel-plugin/battery.c:1349
+msgid Display percentage in tooltip
+msgstr 
+
+#: ../panel-plugin/battery.c:1352
+msgid Display time remaining in tooltip
+msgstr 
+
+#: ../panel-plugin/battery.c:1355
+msgid Display power
+msgstr Zobraziť napájanie\t
+
+#: ../panel-plugin/battery.c:1358
+msgid Display icon
+msgstr Zobraziť ikonu
+
+#: ../panel-plugin/battmon.desktop.in.in.h:2
+msgid Show and monitor the battery status
+msgstr Zobraziť a monitorovať stav batérie
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 3d7ca539b94d972c36a712f69edf96e636f06e21 (commit)
   from 723e0aba735aac177f91f2c4a091ca77aaf11308 (commit)

commit 3d7ca539b94d972c36a712f69edf96e636f06e21
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:41:42 2011 +0100

Post release tag bump.

 configure.in.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 93c13df..e52d5ef 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -28,7 +28,7 @@ m4_define([thunar_version_minor], [1])
 m4_define([thunar_version_micro], [6])
 m4_define([thunar_version_nano], [])
 m4_define([thunar_version_build], [...@revision@])
-m4_define([thunar_version_tag], [])
+m4_define([thunar_version_tag], [git])
 m4_define([thunar_version], 
[thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_nano(),
 [], [], [.thunar_version_nano()])ifelse(thunar_version_tag(), [git], 
[thunar_version_tag()-thunar_version_build()], [thunar_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar|thunar-1.1.6 Creating annotated tag thunar-1.1.6

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/thunar-1.1.6
 as new annotated tag
 to d5a05736f818d83995ae18d6b34cd9ed204e6a26 (tag)
   succeeds thunar-1.1.5
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:41 +

Aleksandr Ponomarenko (1):
  l10n: Updated Russian (ru) translation to 100%

Andhika Padmawan (1):
  l10n: Updated Indonesian (id) translation to 100%

Benedikt Meurer (2):
  Update copyright.
  Fix thunar -V.

Cheng-Chia Tseng (1):
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

Daniel Nylander (6):
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%
  l10n: Updated Swedish (sv) translation to 100%

Fabian Nowak (1):
  l10n: Updated German (de) translation to 100%

Ivica  Kolić (2):
  l10n: Updates to Croatian translation
  l10n: Updated Croatian (hr) translation to 78%

Jannis Pohlmann (3):
  Post-release version bump.
  Fix unused variable warning when building with GLib  2.20.
  Hide status icon prior to destroying it (bug #6891). Patch by Xavier D.

Jari Rahkonen (1):
  l10n: Updated Finnish (fi) translation to 100%

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Jérôme Guelfucci (1):
  Fix twp plugin for images with a quote in file name (bug #5056).

Masato Hashimoto (1):
  l10n: Updated Japanese (ja) translation to 100%

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (2):
  Fix Gtk 2.16 function.
  Updates for release.

Nuno Miguel (2):
  l10n: Updated Portuguese (pt) translation to 100%
  l10n: Updated Portuguese (pt) translation to 100%

Paul Seyfert (1):
  l10n: Updated German (de) translation to 99%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

Yarema aka Knedlyk (1):
  l10n: Updated Ukrainian (uk) translation to 100%

كريم أولاد الشلحة (1):
  l10n: Updated Arabic (ar) translation to 53%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 723e0aba735aac177f91f2c4a091ca77aaf11308 (commit)
   from 1ea4542a95953a91ff1d65e033d9ca0049477e89 (commit)

commit 723e0aba735aac177f91f2c4a091ca77aaf11308
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:35:19 2011 +0100

Updates for release.

 NEWS|7 ++-
 configure.in.in |4 ++--
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 0760930..8e71ca4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,13 @@
-1.1.x
+1.1.6
 =
 - Fix unused variable warning when building with GLib  2.20.
 - Fix file operation status icon not disappearing by hiding the icon
   prior to destroying it (bug #6891). Patch by Xavier D.
+- Fix Gtk 2.16 function.
+- Fix twp plugin for images with a quote in file name (bug #5056).
+- Bump copyrights to 2011.
+- Translation updates (zh_TW, de, cs, fi, uk, pt, ru, nb, ja,
+  de, en_GB, sv, id, hr, ar).
 
 1.1.5
 =
diff --git a/configure.in.in b/configure.in.in
index d1d8f38..93c13df 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -25,10 +25,10 @@ m4_define([thunarx_verinfo], [0:0:0])
 m4_define([thunarx_version_api], [2])
 m4_define([thunar_version_major], [1])
 m4_define([thunar_version_minor], [1])
-m4_define([thunar_version_micro], [5])
+m4_define([thunar_version_micro], [6])
 m4_define([thunar_version_nano], [])
 m4_define([thunar_version_build], [...@revision@])
-m4_define([thunar_version_tag], [git])
+m4_define([thunar_version_tag], [])
 m4_define([thunar_version], 
[thunar_version_major().thunar_version_minor().thunar_version_micro()ifelse(thunar_version_nano(),
 [], [], [.thunar_version_nano()])ifelse(thunar_version_tag(), [git], 
[thunar_version_tag()-thunar_version_build()], [thunar_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to b8f3632a7eb7dff4f5793671b91150a0ce392d3a (commit)
   from dffbf87ea34e8a1893bb72e4a90eb6fb58b95e81 (commit)

commit b8f3632a7eb7dff4f5793671b91150a0ce392d3a
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:50:32 2011 +0100

Post release tag bump.

 configure.ac.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index fc4a1b4..6a229a4 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -9,7 +9,7 @@ m4_define([xfdesktop_version_minor], [7])
 m4_define([xfdesktop_version_micro], [5])
 m4_define([xfdesktop_version_nano], [])
 m4_define([xfdesktop_version_build], [...@revision@])
-m4_define([xfdesktop_version_tag],[])
+m4_define([xfdesktop_version_tag],[git])
 m4_define([xfdesktop_version], 
[xfdesktop_version_major().xfdesktop_version_minor().xfdesktop_version_micro()ifelse(xfdesktop_version_nano(),
 [], [], [.xfdesktop_version_nano()])ifelse(xfdesktop_version_tag(), [git], 
[xfdesktop_version_tag()-xfdesktop_version_build()], 
[xfdesktop_version_tag()])])
 
 dnl minimum required versions
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop|xfdesktop-4.7.5 Creating annotated tag xfdesktop-4.7.5

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfdesktop-4.7.5
 as new annotated tag
 to 029b05c8052e24add4ea6f90138097d017d50128 (tag)
   succeeds xfdesktop-4.7.4
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:50 +

Aleksandr Ponomarenko (1):
  l10n: Updated Russian (ru) translation to 88%

Daniel Nylander (5):
  l10n: Updated Swedish (sv) translation to 80%
  l10n: Updated Swedish (sv) translation to 83%
  l10n: Updated Swedish (sv) translation to 90%
  l10n: Updated Swedish (sv) translation to 95%
  l10n: Updated Swedish (sv) translation to 100%

Jannis Pohlmann (1):
  Post-release version bump.

Jeff Bailes (1):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (3):
  Work around Gtk 2.16 function (bug #6883).
  Tiny improvement on previous commit.
  Updates for release.

Nuno Miguel (1):
  l10n: Updated Portuguese (pt) translation to 100%

Ričardas Vasiulis (3):
  l10n: Updated Lithuanian (lt) translation to 26%
  l10n: Updated Lithuanian (lt) translation to 26%
  l10n: Updated Lithuanian (lt) translation to 47%

Robert Hartl (1):
  l10n: Updated Slovak (sk) translation to 82%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

كريم أولاد الشلحة (3):
  l10n: Updated Arabic (ar) translation to 41%
  l10n: Updated Arabic (ar) translation to 51%
  l10n: Updated Arabic (ar) translation to 60%

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to dffbf87ea34e8a1893bb72e4a90eb6fb58b95e81 (commit)
   from 352e5c7f565db7c2e8db49a4be32cc081c62e670 (commit)

commit dffbf87ea34e8a1893bb72e4a90eb6fb58b95e81
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:48:33 2011 +0100

Updates for release.

 NEWS|5 -
 configure.ac.in |4 ++--
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 88e02c6..c83b341 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,9 @@
-Xfdesktop 4.7.x
+Xfdesktop 4.7.5
 ---
 
+  * Work around Gtk 2.16 function (bug #6883).
+  * Translation updates: sk, ru, cs, en_GB, lt, sv, nb, ar, pt).
+
 
 Xfdesktop 4.7.4
 ---
diff --git a/configure.ac.in b/configure.ac.in
index 2e5ed1e..fc4a1b4 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -6,10 +6,10 @@ dnl
 dnl version info
 m4_define([xfdesktop_version_major], [4])
 m4_define([xfdesktop_version_minor], [7])
-m4_define([xfdesktop_version_micro], [4])
+m4_define([xfdesktop_version_micro], [5])
 m4_define([xfdesktop_version_nano], [])
 m4_define([xfdesktop_version_build], [...@revision@])
-m4_define([xfdesktop_version_tag],[git])
+m4_define([xfdesktop_version_tag],[])
 m4_define([xfdesktop_version], 
[xfdesktop_version_major().xfdesktop_version_minor().xfdesktop_version_micro()ifelse(xfdesktop_version_nano(),
 [], [], [.xfdesktop_version_nano()])ifelse(xfdesktop_version_tag(), [git], 
[xfdesktop_version_tag()-xfdesktop_version_build()], 
[xfdesktop_version_tag()])])
 
 dnl minimum required versions
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 4e07acc5f7ca3531ef712db6b5df05f16794d4bd (commit)
   from f1d3500d4c9ea212c4ca1822aa9654e6a33dab53 (commit)

commit 4e07acc5f7ca3531ef712db6b5df05f16794d4bd
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:52:48 2011 +0100

Updates for release.

 NEWS|6 ++
 configure.ac.in |4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 9856635..037834a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+Xfconf 4.7.5
+
+
+  * Updated translations: he, nb, en+GB, pt, ar.
+
+
 Xfconf 4.7.4
 
 
diff --git a/configure.ac.in b/configure.ac.in
index de5d362..fac07ae 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -10,10 +10,10 @@ m4_define([libxfconf_verinfo], [2:0:0])
 m4_define([libxfconf_version_api], [0])
 m4_define([xfconf_version_major], [4])
 m4_define([xfconf_version_minor], [7])
-m4_define([xfconf_version_micro], [4])
+m4_define([xfconf_version_micro], [5])
 m4_define([xfconf_version_nano], [])
 m4_define([xfconf_version_build], [...@revision@])
-m4_define([xfconf_version_tag], [git])
+m4_define([xfconf_version_tag], [])
 m4_define([xfconf_version], 
[xfconf_version_major().xfconf_version_minor().xfconf_version_micro()ifelse(xfconf_version_nano(),
 [], [], [.xfconf_version_nano()])ifelse(xfconf_version_tag(), [git], 
[xfconf_version_tag()-xfconf_version_build()], [xfconf_version_tag()])])
 
 m4_define([xfconf_default_debug], [ifelse(xfconf_version_tag(), [git], [yes], 
[minimum])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to a4a116bd971bab3bece9e54c8970d17af45a2951 (commit)
   from 4e07acc5f7ca3531ef712db6b5df05f16794d4bd (commit)

commit a4a116bd971bab3bece9e54c8970d17af45a2951
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 14:53:19 2011 +0100

Post release tag bump.

 configure.ac.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index fac07ae..83c6adb 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -13,7 +13,7 @@ m4_define([xfconf_version_minor], [7])
 m4_define([xfconf_version_micro], [5])
 m4_define([xfconf_version_nano], [])
 m4_define([xfconf_version_build], [...@revision@])
-m4_define([xfconf_version_tag], [])
+m4_define([xfconf_version_tag], [git])
 m4_define([xfconf_version], 
[xfconf_version_major().xfconf_version_minor().xfconf_version_micro()ifelse(xfconf_version_nano(),
 [], [], [.xfconf_version_nano()])ifelse(xfconf_version_tag(), [git], 
[xfconf_version_tag()-xfconf_version_build()], [xfconf_version_tag()])])
 
 m4_define([xfconf_default_debug], [ifelse(xfconf_version_tag(), [git], [yes], 
[minimum])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfconf|xfconf-4.7.5 Creating annotated tag xfconf-4.7.5

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfconf-4.7.5
 as new annotated tag
 to 435637f33489058a536cf2cf3553598201cf0d20 (tag)
   succeeds xfconf-4.7.4
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 13:53 +

Hezy Amiel (1):
  l10n: New Hebrew translation

Jeff Bailes (2):
  l10n: Initial commit for en_GB
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Nick Schermer (3):
  Post release tag bump.
  l10n: Updated Norwegian Bokmal (nb) translation to 96%
  Updates for release.

Nuno Miguel (1):
  l10n: Updated Portuguese (pt) translation to 100%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

كريم أولاد الشلحة (1):
  l10n: Arabic translation

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to aeb61ed3ca5ada1952f57bb16890a2d8ee4a4f34 (commit)
   from 1273381f3ff8794ecaf84f2f91d5468354c83d22 (commit)

commit aeb61ed3ca5ada1952f57bb16890a2d8ee4a4f34
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 15:01:58 2011 +0100

Updates for release.

 NEWS|   56 +++
 configure.ac.in |4 +-
 2 files changed, 58 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 2b6a045..4a8ac0b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,59 @@
+4.7.7
+=
+- Bind panel translation domain for external plugins (bug #6932).
+- Allow reordering plugins in preferences with dnd.
+- Open plugin preferences on double-click (bug #6975).
+- Change launcher dnd code for plugin moving.
+- Send drag motion event to parent widgets.
+- Do not make the itembar insensitive (bug #6818).
+- Fix some prototype variable names.
+- Fix warning when removing a panel with a 4.6 plugin.
+- Fix order of menu items based on screen position (bug #6978).
+- Drop too-new Gtk API.
+- Various improvements in the launcher dialog.
+- Don't use the session manager in action plugin.
+- Add option to filter tasklist window by monitor (bug #5199).
+- Remove plugin when dropping in items dialog (bug #6976).
+- Bump copyright to 2010 and fix licenses.
+- Also load desktop files from xfce4/panel/plugins (bug #7013).
+- Install desktop files in xfce4/plugins/actions (bug #7013).
+- Make vertical clock rotation optional (bug #7002).
+- Fix various size allocation issues in clock (bug #5219, #3960).
+- Fix plugin dnd with locked panel and outside itembar.
+- Add missing function to libxfce4panel.symbols.
+- Fix ABI check on ppc (bug #7009).
+- Fix typo in function name.
+- Add application menu in default layout.
+- Fix invalid unref.
+- Make sure launchers are properly removed and saved.
+- Fix vertical tasklist buttons in non-vertical mode.
+- Fix thinko in screen handling (bug #6830).
+- Workaround un nusable plugin when moving to other window.
+- Add xfce_panel_pixbuf_from_source().
+- Use xfce_panel_pixbuf_from_source() in XfcePanelImage.
+- Use XfcePanelImage in the launcher menu.
+- Use xfce_panel_pixbuf_from_source in launcher dialogs.
+- Optimize loading icons from absolute paths.
+- Fix some compiler warnings.
+- Move hidden name handling to plugin.
+- Use foreach to add application to store.
+- Move arrow button to plugin widget (bug #6694).
+- Only use orientation in systray box.
+- Remove unused variables in box structures.
+- Drop child structure from box and only use widgets.
+- Improve sort function a bit + other tiny changes.
+- Move composited child function to plugin.
+- Use xfce_panel_pixbuf_from_source() to load known apps.
+- Add some known tray application names.
+- Try WM_NAME(STRING) too for tray application name.
+- Redo icon positioning (bug #5565, #9650 and more).
+- Drop some unused systray code.
+- Block grabs from outside the panel.
+- 1x1 invisible icons doesn't seem to be true (bug #7044).
+- Bump copyrights to 2011.
+- Translation updates (ca, cs, da, de, en_GB, fi, gl, he, hr, hu, id,
+  it, ja, kk, nb, pl, pt, pt_BR ru, sk, sv, uk, zh_TW).
+
 4.7.6
 =
 - Always use applications menu for default menu.
diff --git a/configure.ac.in b/configure.ac.in
index e53eb63..a05c256 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -12,10 +12,10 @@ m4_define([libxfce4panel_verinfo], [3:0:0]) dnl 
current:revision:age
 m4_define([libxfce4panel_version_api], [1.0])
 m4_define([xfce4_panel_version_major], [4])
 m4_define([xfce4_panel_version_minor], [7])
-m4_define([xfce4_panel_version_micro], [6])
+m4_define([xfce4_panel_version_micro], [7])
 m4_define([xfce4_panel_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([xfce4_panel_version_build], [...@revision@])
-m4_define([xfce4_panel_version_tag],   [git])
+m4_define([xfce4_panel_version_tag],   [])
 m4_define([xfce4_panel_version], 
[xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(),
 [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], 
[xfce4_panel_version_tag()-xfce4_panel_version_build()], 
[xfce4_panel_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel|xfce4-panel-4.7.7 Creating annotated tag xfce4-panel-4.7.7

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfce4-panel-4.7.7
 as new annotated tag
 to 5d560fcf10a67a66bc056fc59fcb74a057e7c0d8 (tag)
   succeeds xfce4-panel-4.7.6
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 14:02 +

Aleksandr Ponomarenko (4):
  l10n: Updated Russian (ru) translation to 92%
  l10n: Updated Russian (ru) translation to 95%
  l10n: Updated Russian (ru) translation to 95%
  l10n: Updated Russian (ru) translation to 95%

Andhika Padmawan (1):
  l10n: Updated Indonesian (id) translation to 100%

Bauzhan Muftakhidinov (2):
  l10n: Updated Kazakh (kk) translation to 100%
  l10n: Updated Kazakh (kk) translation to 100%

Cheng-Chia Tseng (4):
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 99%
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 99%
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%
  l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

Cristian Marchi (2):
  l10n: Updated Italian (it) translation to 100%
  l10n: Updated Italian (it) translation to 100%

Daniel Nylander (1):
  l10n: Updated Swedish (sv) translation to 70%

Dmitry Nikitin (2):
  l10n: Updated Ukrainian (uk) translation to 100%
  l10n: Updated Ukrainian (uk) translation to 100%

Fabian Nowak (1):
  l10n: Updated German (de) translation to 100%

Gabor Kelemen (1):
  l10n: Updated Hungarian (hu) translation to 100%

Harald Servat (2):
  l10n: Updated Catalan (Valencian) (ca) translation to 100%
  l10n: Updated Catalan (Valencian) (ca) translation to 100%

Henrique P. Machado (1):
  l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%

Ivica  Kolić (1):
  l10n: Updated Croatian (hr) translation to 73%

Jari Rahkonen (3):
  l10n: Updated Finnish (fi) translation to 100%
  l10n: Updated Finnish (fi) translation to 100%
  l10n: Updated Finnish (fi) translation to 100%

Jeff Bailes (4):
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%
  l10n: Updated English (United Kingdom) (en_GB) translation to 99%
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Johannes Lips (1):
  l10n: Updated German (de) translation to 99%

Leandro Regueiro (2):
  l10n: Updated Galician (gl) translation to 95%
  l10n: Updated Galician (gl) translation to 96%

Masato Hashimoto (3):
  l10n: Updated Japanese (ja) translation to 100%
  l10n: Updated Japanese (ja) translation to 100%
  l10n: Updated Japanese (ja) translation to 100%

Michal Várady (4):
  l10n: Updated Czech (cs) translation to 86%
  l10n: Updated Czech (cs) translation to 100%
  l10n: Updated Czech (cs) translation to 100%
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (59):
  Post release tag bump.
  Bind panel translation domain for external plugins (bug #6932).
  Allow reordering plugins in preferences with dnd.
  Open plugin preferences on double-click (bug #6975).
  Change launcher dnd code for plugin moving.
  Send drag motion event to parent widgets.
  Do not make the itembar insensitive (bug #6818).
  Fix some prototype variable names.
  Fix warning when removing a panel with a 4.6 plugin.
  Fix order of menu items based on screen position (bug #6978).
  Drop too-new Gtk API.
  Various improvements in the launcher dialog.
  Drop unneeded code.
  Don't use the session manager in action plugin.
  Add option to filter tasklist window by monitor (bug #5199).
  Remove plugin when dropping in items dialog (bug #6976).
  Small code cleanups.
  Bump copyright to 2010 and fix licenses.
  Align prototypes in tasklist.
  Also load desktop files from xfce4/panel/plugins (bug #7013).
  Install desktop files in xfce4/plugins/actions (bug #7013).
  Make vertical clock rotation optional (bug #7002).
  Fix various size allocation issues in clock (bug #5219, #3960).
  Fix plugin dnd with locked panel and outside itembar.
  Merge branch 'nick/wip-4.10'
  Add missing function to libxfce4panel.symbols.
  Fix ABI check on ppc (bug #7009).
  Fix typo in function name.
  Add application menu in default layout.
  Fix invalid unref.
  Make sure launchers are properly removed and saved.
  Fix vertical tasklist buttons in non-vertical mode.
  Fix thinko in screen handling (bug #6830).
  Workaround un nusable plugin when moving to other window.
  Add xfce_panel_pixbuf_from_source().
  Use xfce_panel_pixbuf_from_source() in XfcePanelImage.
  Use XfcePanelImage in the launcher menu.
  Use xfce_panel_pixbuf_from_source in launcher dialogs.
  Optimize loading icons from absolute paths.
  Fix some compiler warnings.
  Move hidden name handling to plugin.
  Use foreach to add application to store.
  Move 

[Xfce4-commits] xfce4-panel:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 11cff62914584dc184f4df471422bd31f1044b58 (commit)
   from aeb61ed3ca5ada1952f57bb16890a2d8ee4a4f34 (commit)

commit 11cff62914584dc184f4df471422bd31f1044b58
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 15:06:16 2011 +0100

Post release tag bump.

 configure.ac.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index a05c256..34d8d19 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -15,7 +15,7 @@ m4_define([xfce4_panel_version_minor], [7])
 m4_define([xfce4_panel_version_micro], [7])
 m4_define([xfce4_panel_version_nano],  []) dnl leave this empty to have no 
nano version
 m4_define([xfce4_panel_version_build], [...@revision@])
-m4_define([xfce4_panel_version_tag],   [])
+m4_define([xfce4_panel_version_tag],   [git])
 m4_define([xfce4_panel_version], 
[xfce4_panel_version_major().xfce4_panel_version_minor().xfce4_panel_version_micro()ifelse(xfce4_panel_version_nano(),
 [], [], [.xfce4_panel_version_nano()])ifelse(xfce4_panel_version_tag(), [git], 
[xfce4_panel_version_tag()-xfce4_panel_version_build()], 
[xfce4_panel_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings:master Updates for release.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 28cc39c3376ec2ffb457527d9f2662544d1e245c (commit)
   from 090a969dcc45237df4b0617962565c1ba5748eaf (commit)

commit 28cc39c3376ec2ffb457527d9f2662544d1e245c
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 15:16:44 2011 +0100

Updates for release.

 NEWS|6 ++
 configure.ac.in |4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index d27048d..76fc477 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,12 @@
 =
 - Remove duplicated terminal entry in xfce4-settings-helper autostart
   desktop file (bug #6919).
+- Set sensitivity of the corrent sound checkbox.
+- Drop Glib 2.22 functions.
+- Get adjustments from builder directly.
+- Make sure default values are applied in dialogs.
+- Don't use xrdb to update xft and cursor settings (bug #7014).
+- Translations updates (de, cs, el, en_GB, nb, sv).
 
 4.7.6
 =
diff --git a/configure.ac.in b/configure.ac.in
index 50f3c20..e6c28d5 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -11,10 +11,10 @@ dnl *** Version information ***
 dnl ***
 m4_define([xfce4_settings_version_major], [4])
 m4_define([xfce4_settings_version_minor], [7])
-m4_define([xfce4_settings_version_micro], [6])
+m4_define([xfce4_settings_version_micro], [7])
 m4_define([xfce4_settings_version_nano], [])
 m4_define([xfce4_settings_version_build], [...@revision@])
-m4_define([xfce4_settings_version_tag], [git]) # Leave empty for releases
+m4_define([xfce4_settings_version_tag], []) # Leave empty for releases
 m4_define([xfce4_settings_version], 
[xfce4_settings_version_major().xfce4_settings_version_minor().xfce4_settings_version_micro()ifelse(xfce4_settings_version_nano(),
 [], [], [.xfce4_settings_version_nano()])ifelse(xfce4_settings_version_tag(), 
[git], [xfce4_settings_version_tag()-xfce4_settings_version_build()], 
[xfce4_settings_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings:master Don't use xrdb to update xft and cursor settings (bug #7014).

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 090a969dcc45237df4b0617962565c1ba5748eaf (commit)
   from 308e45a88af48b099f4e1d83e270f8dfd00efa9c (commit)

commit 090a969dcc45237df4b0617962565c1ba5748eaf
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 13:40:33 2011 +0100

Don't use xrdb to update xft and cursor settings (bug #7014).

 xfsettingsd/main.c |2 +
 xfsettingsd/registry.c |  221 +++-
 xfsettingsd/registry.h |2 +-
 3 files changed, 126 insertions(+), 99 deletions(-)

diff --git a/xfsettingsd/main.c b/xfsettingsd/main.c
index 23a4e5f..272c30f 100644
--- a/xfsettingsd/main.c
+++ b/xfsettingsd/main.c
@@ -184,6 +184,8 @@ main(int argc, char **argv)
 
 xsettings_registry_notify(registry);
 
+xsettings_registry_xft_notify(registry);
+
 gdk_window_add_filter(NULL, manager_event_filter, registry);
 
 keep_running = TRUE;
diff --git a/xfsettingsd/registry.c b/xfsettingsd/registry.c
index 5364491..e2f58e9 100644
--- a/xfsettingsd/registry.c
+++ b/xfsettingsd/registry.c
@@ -15,7 +15,7 @@
  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL RED HAT
  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
- * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  *
  * Author:  Owen Taylor, Red Hat, Inc.
@@ -40,6 +40,7 @@
 #include config.h
 #include X11/Xlib.h
 #include X11/Xmd.h
+#include X11/Xatom.h
 
 #include glib.h
 
@@ -170,13 +171,14 @@ struct _XSettingsRegistryPriv
 Window window;
 Atom xsettings_atom;
 Atom selection_atom;
+gboolean debug;
 };
 
 static void xsettings_registry_set_property(GObject*, guint, const GValue*, 
GParamSpec*);
 static void xsettings_registry_get_property(GObject*, guint, GValue*, 
GParamSpec*);
 
 static void
-cb_xsettings_registry_channel_property_changed(XfconfChannel *channel, const 
gchar *property_name, const GValue *value, XSettingsRegistry *registry); 
+cb_xsettings_registry_channel_property_changed(XfconfChannel *channel, const 
gchar *property_name, const GValue *value, XSettingsRegistry *registry);
 static Bool
 timestamp_predicate (Display *display, XEvent  *xevent, XPointer arg);
 static int
@@ -301,118 +303,125 @@ 
cb_xsettings_registry_channel_property_changed(XfconfChannel *channel, const gch
 
 xsettings_registry_notify(registry);
 if (!strncmp(name, /Xft, 4) || !strncmp(name, /Gtk/CursorTheme, 16))
-xsettings_registry_store_xrdb(registry);
+xsettings_registry_xft_notify(registry);
 }
 
-void
-xsettings_registry_store_xrdb(XSettingsRegistry *registry)
+static void
+update_property (GString *props, const gchar* key, const gchar* value)
 {
-gchar*filename;
-GError   *error = NULL;
-GString  *string;
-gchar*command, *contents;
-gboolean  result = TRUE;
-
-/* store the xft properties */
-filename = xfce_resource_save_location(XFCE_RESOURCE_CONFIG, xfce4 
G_DIR_SEPARATOR_S Xft.xrdb, TRUE);
-if (G_LIKELY (filename))
+gchar *needle;
+gssize needle_len;
+gchar *found = NULL;
+gsize value_index;
+gchar *end;
+
+if (G_UNLIKELY (value == NULL))
+value = ;
+
+/* update an existing property */
+needle = g_strconcat (key, :, NULL);
+needle_len = strlen (needle);
+if (g_str_has_prefix (props-str, needle))
+found = props-str;
+else
+found = strstr (props-str, needle);
+
+if (found)
 {
-/* create file contents */
-const gchar *xft_rgba = g_value_get_string 
(properties[XSETTING_ENTRY_XFT_RGBA].value);
-
-string = g_string_sized_new (80);
-g_string_append_printf (string, Xft.antialias: %d\n
-Xft.hinting: %d\n
-Xft.rgba: %s\n,
-g_value_get_int 
(properties[XSETTING_ENTRY_XFT_ANTIALIAS].value),
-g_value_get_int 
(properties[XSETTING_ENTRY_XFT_HINTING].value),
-xft_rgba ? xft_rgba : );
-
-if (g_value_get_int (properties[XSETTING_ENTRY_XFT_HINTING].value))
-g_string_append_printf (string, Xft.hintstyle: %s\n, 
g_value_get_string (properties[XSETTING_ENTRY_XFT_HINTSTYLE].value));
-else
-string = g_string_append (string, Xft.hintstyle: hintnone\n);
+end = strchr (found, '\n');
+value_index = (found - props-str) + needle_len + 1;
+g_string_erase (props, value_index, end ? (end - found - needle_len) : 
-1);
+g_string_insert (props, value_index, \n);
+g_string_insert (props, value_index, value);
+}
+else
+{
+g_string_append_printf 

[Xfce4-commits] xfce4-settings:master Post release tag bump.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to f32cefd509588d4e75c8b3be029c7697b83bef72 (commit)
   from 28cc39c3376ec2ffb457527d9f2662544d1e245c (commit)

commit f32cefd509588d4e75c8b3be029c7697b83bef72
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 15:19:13 2011 +0100

Post release tag bump.

 configure.ac.in |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index e6c28d5..96ea893 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -14,7 +14,7 @@ m4_define([xfce4_settings_version_minor], [7])
 m4_define([xfce4_settings_version_micro], [7])
 m4_define([xfce4_settings_version_nano], [])
 m4_define([xfce4_settings_version_build], [...@revision@])
-m4_define([xfce4_settings_version_tag], []) # Leave empty for releases
+m4_define([xfce4_settings_version_tag], [git]) # Leave empty for releases
 m4_define([xfce4_settings_version], 
[xfce4_settings_version_major().xfce4_settings_version_minor().xfce4_settings_version_micro()ifelse(xfce4_settings_version_nano(),
 [], [], [.xfce4_settings_version_nano()])ifelse(xfce4_settings_version_tag(), 
[git], [xfce4_settings_version_tag()-xfce4_settings_version_build()], 
[xfce4_settings_version_tag()])])
 
 dnl ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings|xfce4-settings-4.7.7 Creating annotated tag xfce4-settings-4.7.7

2011-01-02 Thread Nick Schermer
Updating annotated tag refs/tags/xfce4-settings-4.7.7
 as new annotated tag
 to 3e85560d3b1105fa3f9de8b3770af60ecb7d23e0 (tag)
   succeeds xfce4-settings-4.7.6
  tagged by Nick Schermer n...@xfce.org
 on 2011-01-02 14:18 +

Daniel Nylander (1):
  l10n: Updated Swedish (sv) translation to 100%

Fabian Nowak (2):
  l10n: Updated German (de) translation to 100%
  l10n: Updated German (de) translation to 100%

Jeff Bailes (2):
  l10n: Initial commit for en_GB
  l10n: Updated English (United Kingdom) (en_GB) translation to 100%

Jérôme Guelfucci (1):
  Remove duplicated terminal entry (bug #6919).

Michal Várady (1):
  l10n: Updated Czech (cs) translation to 100%

Nick Schermer (7):
  Post release tag bump.
  Set sensitivity of the corrent sound checkbox.
  Drop Glib 2.22 functions.
  Get adjustments from builder directly.
  Make sure default values are applied in dialogs.
  Don't use xrdb to update xft and cursor settings (bug #7014).
  Updates for release.

Paul Seyfert (1):
  l10n: Updated German (de) translation to 100%

Stavros Giannouris (1):
  l10n: Updated Greek (el) translation to 93%

Terje Uriansrud (1):
  l10n: Updated Norwegian Bokmal (nb) translation to 100%

كريم أولاد الشلحة (1):
  l10n: Arabic translation

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-datetime-plugin:master l10n: Slovak translation

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 039562910fcb8abd39e6f24cb9f3dd7165e044c6 (commit)
   from 659c69330a7cf0f877cefaa41dd1663eb97bf6b3 (commit)

commit 039562910fcb8abd39e6f24cb9f3dd7165e044c6
Author: Robert Hartl hartl.rob...@gmail.com
Date:   Sun Jan 2 16:33:17 2011 +0100

l10n: Slovak translation

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

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

 po/{it.po = sk.po} |   67 ++-
 1 files changed, 34 insertions(+), 33 deletions(-)

diff --git a/po/it.po b/po/sk.po
similarity index 65%
copy from po/it.po
copy to po/sk.po
index 7577e6e..eb96c1f 100644
--- a/po/it.po
+++ b/po/sk.po
@@ -1,107 +1,108 @@
-# Italian translation for xfce4-datetime-plugin
-# Copyright (C) 2008 Xfce Desktop Environment Project
+# lovak translation of xfce4-datetime-plugin.
+# Copyright (C) YEAR THE xfce4-datetime-plugin'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-datetime-plugin 
package.
-# Francesco Scarrone p...@gmail.com, 2009.
-# 
+# Robert Hartl hartl.rob...@gmail.com, 2011.
+#
 msgid 
 msgstr 
 Project-Id-Version: xfce4-datetime-plugin\n
-Report-Msgid-Bugs-To: \n
+Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
 POT-Creation-Date: 2009-07-31 13:39-0500\n
-PO-Revision-Date: 2009-02-06 15:29+0100\n
-Last-Translator: Francesco Scarrone pjf@gmail.com\n
-Language-Team: Darkforge www.darkforge.it\n
+PO-Revision-Date: 2011-01-02 16:32+0100\n
+Last-Translator: Robert Hartl hartl.rob...@gmail.com\n
+Language-Team: Slovak xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=utf-8\n
 Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 
 #: ../panel-plugin/datetime.c:82
 msgid Invalid format
-msgstr Formato non valido
+msgstr Neplatný formát
 
 #: ../panel-plugin/datetime.c:87
 msgid Error
-msgstr Errore
+msgstr Chyba
 
 #: ../panel-plugin/datetime-dialog.c:42
 msgid Date, then time
-msgstr Prima la data, poi l'ora
+msgstr 
 
 #: ../panel-plugin/datetime-dialog.c:43
 msgid Time, then date
-msgstr Prima l'ora, poi la data
+msgstr 
 
 #: ../panel-plugin/datetime-dialog.c:44
 msgid Date only
-msgstr Solo la data
+msgstr Iba dátum
 
 #: ../panel-plugin/datetime-dialog.c:45
 msgid Time only
-msgstr Solo l'ora
+msgstr Iba čas
 
 #. placeholder
 #: ../panel-plugin/datetime-dialog.c:85 ../panel-plugin/datetime-dialog.c:96
 msgid Custom...
-msgstr Personalizza...
+msgstr Vlastné...
 
 #: ../panel-plugin/datetime-dialog.c:131
 msgid Select font
-msgstr Seleziona il carattere
+msgstr Vyberte písmo
 
 #: ../panel-plugin/datetime-dialog.c:332
 #, c-format
 msgid Unable to open the following url: %s
-msgstr Impossibile aprire il seguente url: %s
+msgstr Nemožno otvoriť následujúcu adresu url: %s
 
 #: ../panel-plugin/datetime-dialog.c:371
 msgid Datetime
-msgstr Orario
+msgstr 
 
+#.
 #. * layout frame
-#. 
+#.
 #: ../panel-plugin/datetime-dialog.c:391
 msgid Layout
-msgstr Stile
+msgstr Vzhľad
 
 #. Format label
 #. format label
 #: ../panel-plugin/datetime-dialog.c:405 ../panel-plugin/datetime-dialog.c:467
 #: ../panel-plugin/datetime-dialog.c:570
 msgid Format:
-msgstr Formato:
+msgstr Formát:
 
+#.
 #. * Date frame
-#. 
+#.
 #: ../panel-plugin/datetime-dialog.c:425
 msgid Date
-msgstr Data
+msgstr Dátum
 
 #: ../panel-plugin/datetime-dialog.c:437
 msgid The date will appear in a tooltip.
-msgstr La data apparirà in un messaggio a scomparsa.
+msgstr 
 
 #. font label
 #: ../panel-plugin/datetime-dialog.c:450 ../panel-plugin/datetime-dialog.c:553
 msgid Font:
-msgstr Carattere:
+msgstr Písmo:
 
+#.
 #. * time frame
-#. 
+#.
 #: ../panel-plugin/datetime-dialog.c:528
 msgid Time
-msgstr Ora
+msgstr Čas
 
 #: ../panel-plugin/datetime-dialog.c:540
 msgid The time will appear in a tooltip.
-msgstr L'ora apparirà in un messaggio a scomparsa.
+msgstr 
 
 #: ../panel-plugin/datetime.desktop.in.in.h:1
 msgid Date and Time plugin with a simple calendar
-msgstr Plugin di data e ora con un calendario base
+msgstr Zásuvný modul Dátum a čas s jednoduchým kalendárom
 
 #: ../panel-plugin/datetime.desktop.in.in.h:2
 msgid DateTime
-msgstr Orario
-
-#~ msgid Datetime properties
-#~ msgstr Proprietà  dell'orario
+msgstr 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar-volman:master l10n: Updated Slovak (sk) translation to 80%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to ead493ae4287a59ad452a704f7a26785b3a5456b (commit)
   from b0b9ef56812c57dd47d8b18ce906cf4112ebb11f (commit)

commit ead493ae4287a59ad452a704f7a26785b3a5456b
Author: Robert Hartl hartl.rob...@gmail.com
Date:   Sun Jan 2 16:36:40 2011 +0100

l10n: Updated Slovak (sk) translation to 80%

New status: 93 messages complete with 8 fuzzies and 15 untranslated.

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

 po/sk.po |   48 +---
 1 files changed, 17 insertions(+), 31 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index e39b734..32d421d 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -12,10 +12,10 @@ msgstr 
 PO-Revision-Date: 2009-09-13 18:41+0200\n
 Last-Translator: Robert Hartl hartl.rob...@gmail.com\n
 Language-Team: slovak sk-i...@lists.linux.sk\n
-Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8-bit\n
+Language: \n
 X-Generator: Lokalize 0.3\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 
@@ -102,11 +102,8 @@ msgid A photo card has been detected
 msgstr Bola zistená foto karta.
 
 #: ../thunar-volman/tvm-block-device.c:275
-msgid 
-There are photos on the card. Would you like to add these photos to your 
-album?
-msgstr 
-Na karte sú fotografie. Chcete tieto fotografie pridať do svojho albumu?
+msgid There are photos on the card. Would you like to add these photos to 
your album?
+msgstr Na karte sú fotografie. Chcete tieto fotografie pridať do svojho 
albumu?
 
 #. prompt the user to execute the file
 #. prompt the user to execute this file
@@ -167,17 +164,17 @@ msgstr 
 
 #: ../thunar-volman/tvm-block-device.c:632
 msgid Volume mounted
-msgstr 
+msgstr Zväzok pripojený
 
 #: ../thunar-volman/tvm-block-device.c:635
 #, c-format
 msgid The volume \%s\ was mounted automatically
-msgstr 
+msgstr Zväzok \%s\ bol pripojený automaticky
 
 #: ../thunar-volman/tvm-block-device.c:640
 #, c-format
 msgid The inserted volume was mounted automatically
-msgstr 
+msgstr Vložený zväzok bok automaticky pripojený
 
 #: ../thunar-volman/tvm-block-device.c:694
 #, c-format
@@ -187,7 +184,7 @@ msgstr 
 #: ../thunar-volman/tvm-block-device.c:740
 #, c-format
 msgid Unable to mount the device
-msgstr 
+msgstr Nemožno pripojiť zariadenie
 
 #: ../thunar-volman/tvm-block-device.c:749
 #, c-format
@@ -378,9 +375,8 @@ msgstr Ruby skripty
 msgid Shell Scripts
 msgstr Shellové skripty
 
-#.
 #. Storage
-#.
+#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:130
 msgid Storage
 msgstr Úložisko
@@ -425,9 +421,8 @@ msgstr Príkaz pre _dátové CD:
 msgid Command for A_udio CDs:
 msgstr Príkaz pre A_udio CD:
 
-#.
 #. Multimedia
-#.
+#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:255
 msgid Multimedia
 msgstr Multimédiá
@@ -471,9 +466,8 @@ msgstr Prenosné prehrávače hudby
 msgid Play _music files when connected
 msgstr Prehrať _hudobné súbory pri pripojení
 
-#.
 #. Cameras
-#.
+#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:379
 msgid Cameras
 msgstr Kamery
@@ -486,9 +480,8 @@ msgstr Digitálne fotoaparáty
 msgid Import digital photographs when connected
 msgstr Importovať digitálne fotografie pri pripojení
 
-#.
 #. PDAs
-#.
+#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:427
 msgid PDAs
 msgstr PDA
@@ -509,9 +502,8 @@ msgstr Pocket PC
 msgid Sync Pocket P_C devices when connected
 msgstr Synchtonizovať zariadenia Pocket P_C pri pripojení
 
-#.
 #. Printers
-#.
+#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:517
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:528
 msgid Printers
@@ -521,9 +513,8 @@ msgstr Tlačiarne
 msgid Automatically run a program when a _printer is connected
 msgstr Automaticky spustiť program pri pripojení _tlačiarne
 
-#.
 #. Input Devices
-#.
+#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:565
 msgid Input Devices
 msgstr Vstupné zariadenia
@@ -575,11 +566,8 @@ msgstr Zlyhalo otvorenie prehliadača dokumentácie
 #~ msgid Encrypted volume
 #~ msgstr Šifrovaný zväzok
 
-#~ msgid 
-#~ span weight=\bold\ size=\larger\Mounting encrypted volume.../span
-#~ msgstr 
-#~ span weight=\bold\ size=\larger\Pripájanie šifrovaného zväzku.../
-#~ span
+#~ msgid span weight=\bold\ size=\larger\Mounting encrypted 
volume.../span
+#~ msgstr span weight=\bold\ size=\larger\Pripájanie šifrovaného 
zväzku.../span
 
 #~ msgid Setting up the crypto layer...
 #~ msgstr Nastavovanie šifrovacej vrstvy...
@@ -593,10 +581,8 @@ msgstr Zlyhalo otvorenie prehliadača dokumentácie
 #~ msgid span weight=\bold\ size=\larger\Wrong password./span
 #~ msgstr span weight=\bold\ size=\larger\Nesprávne heslo./span
 
-#~ msgid 
-#~ span weight=\bold\ size=\larger\This volume is encrypted./span
-#~ msgstr 
-#~ span weight=\bold\ size=\larger\Tento zväzok je šifrovaný./span
+#~ msgid span weight=\bold\ size=\larger\This volume is 
encrypted./span
+#~ msgstr span weight=\bold\ size=\larger\Tento 

[Xfce4-commits] xfdesktop:master Drop flower background.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 795ce863647db705328f24a9678ba0b9eb5b8a03 (commit)
   from b8f3632a7eb7dff4f5793671b91150a0ce392d3a (commit)

commit 795ce863647db705328f24a9678ba0b9eb5b8a03
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 16:47:16 2011 +0100

Drop flower background.

Not Xfce related, resolution too small and adds too many Kbs to the package.

 backdrops/Makefile.am |1 -
 backdrops/flower.png  |  Bin 557451 - 0 bytes
 2 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/backdrops/Makefile.am b/backdrops/Makefile.am
index 36d88be..879d8e6 100644
--- a/backdrops/Makefile.am
+++ b/backdrops/Makefile.am
@@ -4,7 +4,6 @@
 backdropsdir = $(datadir)/xfce4/backdrops
 
 backdrops_DATA =   \
-   flower.png  \
xfce4gradientcurve.png  \
xfce4logo.png   \
xfce-in-a-grid.png  \
diff --git a/backdrops/flower.png b/backdrops/flower.png
deleted file mode 100644
index cc303f0..000
Binary files a/backdrops/flower.png and /dev/null differ
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master Optipng the backdrops.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 86a17a2915d7dbb95f7c44dac9aa067b14810abc (commit)
   from 795ce863647db705328f24a9678ba0b9eb5b8a03 (commit)

commit 86a17a2915d7dbb95f7c44dac9aa067b14810abc
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 16:50:21 2011 +0100

Optipng the backdrops.

 backdrops/xfce-in-a-grid.png |  Bin 22700 - 21797 bytes
 backdrops/xfce-in-the-moon.png   |  Bin 254915 - 206593 bytes
 backdrops/xfce-smoke.png |  Bin 190400 - 130670 bytes
 backdrops/xfce-stellar-tile.png  |  Bin 850 - 365 bytes
 backdrops/xfce-stripes.png   |  Bin 137214 - 120652 bytes
 backdrops/xfce-turbulence.png|  Bin 364278 - 359913 bytes
 backdrops/xfce4gradientcurve.png |  Bin 112588 - 89171 bytes
 backdrops/xfce4logo.png  |  Bin 52177 - 46408 bytes
 8 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/backdrops/xfce-in-a-grid.png b/backdrops/xfce-in-a-grid.png
index a257ca4..9a0e015 100644
Binary files a/backdrops/xfce-in-a-grid.png and b/backdrops/xfce-in-a-grid.png 
differ
diff --git a/backdrops/xfce-in-the-moon.png b/backdrops/xfce-in-the-moon.png
index f946ec3..afa67be 100644
Binary files a/backdrops/xfce-in-the-moon.png and 
b/backdrops/xfce-in-the-moon.png differ
diff --git a/backdrops/xfce-smoke.png b/backdrops/xfce-smoke.png
index a976779..2463fbb 100644
Binary files a/backdrops/xfce-smoke.png and b/backdrops/xfce-smoke.png differ
diff --git a/backdrops/xfce-stellar-tile.png b/backdrops/xfce-stellar-tile.png
index 32f9be6..3ba6b46 100644
Binary files a/backdrops/xfce-stellar-tile.png and 
b/backdrops/xfce-stellar-tile.png differ
diff --git a/backdrops/xfce-stripes.png b/backdrops/xfce-stripes.png
index 961d4e8..587fb55 100644
Binary files a/backdrops/xfce-stripes.png and b/backdrops/xfce-stripes.png 
differ
diff --git a/backdrops/xfce-turbulence.png b/backdrops/xfce-turbulence.png
index 85917f5..fec4e94 100644
Binary files a/backdrops/xfce-turbulence.png and 
b/backdrops/xfce-turbulence.png differ
diff --git a/backdrops/xfce4gradientcurve.png b/backdrops/xfce4gradientcurve.png
index 53b2ab1..5cc5762 100644
Binary files a/backdrops/xfce4gradientcurve.png and 
b/backdrops/xfce4gradientcurve.png differ
diff --git a/backdrops/xfce4logo.png b/backdrops/xfce4logo.png
index 231f565..606013c 100644
Binary files a/backdrops/xfce4logo.png and b/backdrops/xfce4logo.png differ
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4util:master Update TODO.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 3b6bce2eb4814c4012232d66e0971ddfda27ae34 (commit)
   from c80b752f5839ac6e1dff79f6e3133d4a24d4868c (commit)

commit 3b6bce2eb4814c4012232d66e0971ddfda27ae34
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 16:53:36 2011 +0100

Update TODO.

 TODO|   31 ---
 libxfce4util/xfce-license.c |2 +-
 2 files changed, 5 insertions(+), 28 deletions(-)

diff --git a/TODO b/TODO
index f744795..efc219f 100644
--- a/TODO
+++ b/TODO
@@ -1,27 +1,4 @@
-Todo list for libxfce4util ( 4.0):

-
-   - Add a xfce_timer_fire_once(time, func) that fires a timeout after
- a specified amount of time and automatically removes the timeout
- afterwards.
- 
-In KDE3 two important changes have been made:
-
-* Default values are no longer written.
-When a configuration file in a location other than $KDEHOME defines a value 
-for a key and the application subsequently writes out a new configuration file
-to $KDEHOME, that configuration file will only contain an entry for the key
-if its value differs from the value read from the other file.
-
-This counters the problem that changing default configuration files under 
-$KDEDIR would not take effect for users, since these users would most likely
-have their own copy of these settings under $KDEHOME. KDE3 will make sure 
-not to copy these settings so changes made under $KDEDIR will affect all users
-that haven't explicitly changed the affected settings to something else.
-
-* Configuration entries can be marked immutable.
-Starting with KDE3, configuration entries can be marked immutable. When a
-configuration entry is immutable it means that configurations files that are
-read later will not be able to override its value. Immutable entries can not
-be changed via KConfig and if the entry is present under $KDEHOME it will 
-be ignored.
+TODO
+
+- Drop XfceDesktopEntry.
+- Make license string static.
diff --git a/libxfce4util/xfce-license.c b/libxfce4util/xfce-license.c
index bcd34c4..044eb48 100644
--- a/libxfce4util/xfce-license.c
+++ b/libxfce4util/xfce-license.c
@@ -28,7 +28,7 @@
 
 
 
-/* change these variables to static once we break the ABI next time */
+/* TODO change these variables to static once we break the ABI next time */
 const gchar xfce_builtin_license_BSD[] =
   N_ ( Redistribution and use in source and binary forms, with or without\n
modification, are permitted provided that the following conditions\n
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:master Desktop files lack main category (bug #7050).

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 6cb7ef0aea0a461949c44b54d088b26c64964991 (commit)
   from 5d8bdaad20fcc15a5c194c9647ea3b745e5e28ea (commit)

commit 6cb7ef0aea0a461949c44b54d088b26c64964991
Author: Yves-Alexis Perez cor...@debian.org
Date:   Sun Jan 2 18:06:51 2011 +0100

Desktop files lack main category (bug #7050).

 scripts/xfconf-migration-4.6.desktop.in |1 +
 scripts/xfhelp4.desktop.in  |2 +-
 xfce4-about/xfce4-about.desktop.in  |2 +-
 xfrun/xfrun4.desktop.in |2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/scripts/xfconf-migration-4.6.desktop.in 
b/scripts/xfconf-migration-4.6.desktop.in
index 56f658f..2211ab8 100644
--- a/scripts/xfconf-migration-4.6.desktop.in
+++ b/scripts/xfconf-migration-4.6.desktop.in
@@ -5,3 +5,4 @@ ex...@libdir@/xfce4/xfconf-migration/xfconf-migration-4.6.pl
 Terminal=false
 Type=Application
 StartupNotify=false
+Categories=Utility
diff --git a/scripts/xfhelp4.desktop.in b/scripts/xfhelp4.desktop.in
index ce55092..784caac 100644
--- a/scripts/xfhelp4.desktop.in
+++ b/scripts/xfhelp4.desktop.in
@@ -5,7 +5,7 @@ Exec=xfhelp4
 Icon=help-contents
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Utility;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 _Name=Help
 _Comment=Help using Xfce
diff --git a/xfce4-about/xfce4-about.desktop.in 
b/xfce4-about/xfce4-about.desktop.in
index ee11012..9b17b07 100644
--- a/xfce4-about/xfce4-about.desktop.in
+++ b/xfce4-about/xfce4-about.desktop.in
@@ -5,7 +5,7 @@ Exec=xfce4-about
 Icon=help-about
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Utility;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 _Name=About Xfce
 _Comment=Information about the Xfce Desktop Environment
diff --git a/xfrun/xfrun4.desktop.in b/xfrun/xfrun4.desktop.in
index e38dde2..b12b6a2 100644
--- a/xfrun/xfrun4.desktop.in
+++ b/xfrun/xfrun4.desktop.in
@@ -5,7 +5,7 @@ Exec=xfrun4
 Icon=system-run
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Utility;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 _Name=Run Program...
 _Comment=Run a program
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:master Add main category to desktop file.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 25c83050f28ec4c0535ab247e2c892d88d3809ce (commit)
   from b39a96a4d86d0a84b79dea3fa1cedb3c340b7274 (commit)

commit 25c83050f28ec4c0535ab247e2c892d88d3809ce
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 18:11:18 2011 +0100

Add main category to desktop file.

 .../xfce4-session-logout.desktop.in|2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/xfce4-session-logout/xfce4-session-logout.desktop.in 
b/xfce4-session-logout/xfce4-session-logout.desktop.in
index f14fd6c..97d4a80 100644
--- a/xfce4-session-logout/xfce4-session-logout.desktop.in
+++ b/xfce4-session-logout/xfce4-session-logout.desktop.in
@@ -5,7 +5,7 @@ Exec=xfce4-session-logout
 Icon=system-log-out
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=System;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 _Name=Log Out
 _Comment=Log out of the Xfce Desktop
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] exo:master Add main category to exo-open desktop files.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to 81fcfd40a3bec0a1a61dbda304cb13705156d41b (commit)
   from d2b7085160932053894948b7ca7d3b1c0a32faca (commit)

commit 81fcfd40a3bec0a1a61dbda304cb13705156d41b
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 18:43:50 2011 +0100

Add main category to exo-open desktop files.

 exo-open/exo-file-manager.desktop.in  |2 +-
 exo-open/exo-mail-reader.desktop.in   |2 +-
 exo-open/exo-terminal-emulator.desktop.in |2 +-
 exo-open/exo-web-browser.desktop.in   |2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/exo-open/exo-file-manager.desktop.in 
b/exo-open/exo-file-manager.desktop.in
index a48b375..8d5fa13 100644
--- a/exo-open/exo-file-manager.desktop.in
+++ b/exo-open/exo-file-manager.desktop.in
@@ -5,7 +5,7 @@ Exec=exo-open --launch FileManager %u
 Icon=system-file-manager
 StartupNotify=true
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Utility;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 MimeType=x-scheme-handler/file;x-scheme-handler/trash;
 _Name=File Manager
diff --git a/exo-open/exo-mail-reader.desktop.in 
b/exo-open/exo-mail-reader.desktop.in
index 8958139..be971c6 100644
--- a/exo-open/exo-mail-reader.desktop.in
+++ b/exo-open/exo-mail-reader.desktop.in
@@ -5,7 +5,7 @@ Exec=exo-open --launch MailReader %u
 Icon=internet-mail
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Network;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 MimeType=x-scheme-handler/mailto;
 _Name=Mail Reader
diff --git a/exo-open/exo-terminal-emulator.desktop.in 
b/exo-open/exo-terminal-emulator.desktop.in
index b7b2911..d5c51bd 100644
--- a/exo-open/exo-terminal-emulator.desktop.in
+++ b/exo-open/exo-terminal-emulator.desktop.in
@@ -5,7 +5,7 @@ Exec=exo-open --launch TerminalEmulator
 Icon=utilities-terminal
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Utility;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 _Name=Terminal Emulator
 _Comment=Use the command line
diff --git a/exo-open/exo-web-browser.desktop.in 
b/exo-open/exo-web-browser.desktop.in
index 8250922..c323753 100644
--- a/exo-open/exo-web-browser.desktop.in
+++ b/exo-open/exo-web-browser.desktop.in
@@ -5,7 +5,7 @@ Exec=exo-open --launch WebBrowser %u
 Icon=web-browser
 StartupNotify=false
 Terminal=false
-Categories=X-XFCE;X-Xfce-Toplevel;
+Categories=Network;X-XFCE;X-Xfce-Toplevel;
 OnlyShowIn=XFCE;
 MimeType=x-scheme-handler/http;x-scheme-handler/https;
 _Name=Web Browser
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] garcon:master Add excludes for toplevel desktop files in categories.

2011-01-02 Thread Nick Schermer
Updating branch refs/heads/master
 to f64fb983e29ed30c8e1cb32cb66b8a66c03bd247 (commit)
   from 3df4d212ad2b3a282b5a7c646ea69bbcdfa1627c (commit)

commit f64fb983e29ed30c8e1cb32cb66b8a66c03bd247
Author: Nick Schermer n...@xfce.org
Date:   Sun Jan 2 18:44:25 2011 +0100

Add excludes for toplevel desktop files in categories.

This way we don't show duplicates in the menu.

 data/xfce/xfce-applications.menu |   51 ++
 1 files changed, 35 insertions(+), 16 deletions(-)

diff --git a/data/xfce/xfce-applications.menu b/data/xfce/xfce-applications.menu
index 2a54a10..d4a641a 100644
--- a/data/xfce/xfce-applications.menu
+++ b/data/xfce/xfce-applications.menu
@@ -3,10 +3,10 @@
 
 Menu
 NameXfce/Name
-
+
 DefaultAppDirs/
 DefaultDirectoryDirs/
-
+
 Include
 CategoryX-Xfce-Toplevel/Category
 /Include
@@ -27,20 +27,20 @@
 Filenamexfce4-about.desktop/Filename
 Filenamexfce4-session-logout.desktop/Filename
 /Layout
-
+
 Menu
 NameSettings/Name
 Directoryxfce-settings.directory/Directory
 Include
 CategorySettings/Category
 /Include
-
+
 Layout
 Filenamexfce-settings-manager.desktop/Filename
 Separator/
 Merge type=all/
 /Layout
-
+
 Menu
 NameScreensavers/Name
 Directoryxfce-screensavers.directory/Directory
@@ -49,7 +49,7 @@
 /Include
 /Menu
 /Menu
-
+
 Menu
 NameAccessories/Name
 Directoryxfce-accessories.directory/Directory
@@ -61,8 +61,16 @@
 CategoryUtility/Category
 /Or
 /Include
+Exclude
+Or
+Filenameexo-file-manager.desktop/Filename
+Filenameexo-terminal-emulator.desktop/Filename
+Filenamexfce4-about.desktop/Filename
+Filenamexfrun4.desktop/Filename
+/Or
+/Exclude
 /Menu
-
+
 Menu
 NameDevelopment/Name
 Directoryxfce-development.directory/Directory
@@ -70,7 +78,7 @@
 CategoryDevelopment/Category
 /Include
 /Menu
-
+
 Menu
 NameEducation/Name
 Directoryxfce-education.directory/Directory
@@ -78,7 +86,7 @@
 CategoryEducation/Category
 /Include
 /Menu
-
+
 Menu
 NameGames/Name
 Directoryxfce-games.directory/Directory
@@ -86,7 +94,7 @@
 CategoryGame/Category
 /Include
 /Menu
-
+
 Menu
 NameGraphics/Name
 Directoryxfce-graphics.directory/Directory
@@ -94,7 +102,7 @@
 CategoryGraphics/Category
 /Include
 /Menu
-
+
 Menu
 NameMultimedia/Name
 Directoryxfce-multimedia.directory/Directory
@@ -104,15 +112,21 @@
 CategoryAudioVideo/Category
 /Include
 /Menu
-
+
 Menu
 NameNetwork/Name
 Directoryxfce-network.directory/Directory
 Include
 CategoryNetwork/Category
 /Include
+Exclude
+Or
+Filenameexo-mail-reader.desktop/Filename
+Filenameexo-web-browser.desktop/Filename
+/Or
+/Exclude
 /Menu
-
+
 Menu
 NameOffice/Name
 Directoryxfce-office.directory/Directory
@@ -128,7 +142,7 @@
 CategoryScience/Category
 /Include
 /Menu
-
+
 Menu
 NameSystem/Name
 Directoryxfce-system.directory/Directory
@@ -138,8 +152,13 @@
 CategorySystem/Category
 /Or
 /Include
+Exclude
+Or
+Filenamexfce4-session-logout.desktop/Filename
+/Or
+/Exclude
 /Menu
-
+
 Menu
 NameOther/Name
 Directoryxfce-other.directory/Directory
@@ -148,5 +167,5 @@
 All/
 /Include
 /Menu
-
+
 /Menu
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master Upload the 4.8pre3 changelog.

2011-01-02 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to aabf7eb621b8db616e5f16a28c770db3d7764173 (commit)
   from 45c3e703e84eefcaf1e9d9ecdc5fb485c527 (commit)

commit aabf7eb621b8db616e5f16a28c770db3d7764173
Author: Jannis Pohlmann jan...@xfce.org
Date:   Sun Jan 2 19:14:56 2011 +0100

Upload the 4.8pre3 changelog.

 i18n/documentation/changelogs/4.8pre3.en.php |  159 ++
 i18n/documentation/changelogs/index.en.php   |1 +
 2 files changed, 160 insertions(+), 0 deletions(-)

diff --git a/i18n/documentation/changelogs/4.8pre3.en.php 
b/i18n/documentation/changelogs/4.8pre3.en.php
new file mode 100644
index 000..7cc9981
--- /dev/null
+++ b/i18n/documentation/changelogs/4.8pre3.en.php
@@ -0,0 +1,159 @@
+?php
+function bug ($id){
+echo 'bug a href=http://bugzilla.xfce.org/show_bug.cgi?id='. $id .'#'. 
$id .'/a';
+}
+?
+
+h2Xfce 4.8pre3 Changelog/h2
+
+h3Extension Library em(exo)/em:/h3
+
+ul
+liSet application name for Thunar loop detection./li
+liFix ABI check on ppc (?php bug('7008') ?)./li
+liQuote filenames with a space in the desktop editor (?php bug('6951') 
?)./li
+liTranslation updates (zh_CN, pt_BR, de, hu, pt, de, cs, en_GB, nb, sv, 
ar)./li
+/ul
+
+h3Widget Library em(libxfce4ui)/em:/h3
+
+ul
+liFix ABI check in ppc (?php bug('7005') ?)./li
+liUpdate default shortcuts for xfce4-display-settings (?php bug('7036') 
?)./li
+liTranslation updates (pt, he, cs, en_BG, nb, ar)./li
+/ul
+
+h3Utility Library em(libxfce4util)/em:/h3
+
+ul
+liFix ABI check on ppc (?php bug('7004') ?)./li
+liTranslation updates (en_BG)./li
+/ul
+
+h3File Manager em(thunar)/em:/h3
+
+ul
+liFix unused variable warning when building with GLib  2.20./li
+liFix file operation status icon not disappearing by hiding the icon prior 
to destroying it (?php bug('6891') ?). Patch by Xavier D./li
+liFix Gtk 2.16 function./li
+liFix twp plugin for images with a quote in file name (?php bug('5056') 
?)./li
+liBump copyrights to 2011./li
+liTranslation updates (zh_TW, de, cs, fi, uk, pt, ru, nb, ja, de, en_GB, sv, 
id, hr, ar)./li
+/ul
+
+h3Utilities em(xfce-utils)/em:/h3
+
+ul
+liSend the xfrun4 caller environ over dbus (?php bug('6927') ?)./li
+liDon't show popup completion if there is a single match./li
+liAdd an icon to the xfrun4 window./li
+liAppend Xfce path to XDG_DATA_DIRS (?php bug('7040') ?)./li
+liTranslation updates (he, de, zh_TW, sk, ru, pt, cs, ja, en_GB, sv, id, 
ug)./li
+/ul
+
+h3Panel em(xfce4-panel)/em:/h3
+
+ul
+liBind panel translation domain for external plugins (?php bug('6932') 
?)./li
+liAllow reordering plugins in preferences with dnd./li
+liOpen plugin preferences on double-click (?php bug('6975') ?)./li
+liChange launcher dnd code for plugin moving./li
+liSend drag motion event to parent widgets./li
+liDo not make the itembar insensitive (?php bug('6818') ?)./li
+liFix some prototype variable names./li
+liFix warning when removing a panel with a 4.6 plugin./li
+liFix order of menu items based on screen position (?php bug('6978') 
?)./li
+liDrop too-new Gtk API./li
+liVarious improvements in the launcher dialog./li
+liDon't use the session manager in action plugin./li
+liAdd option to filter tasklist window by monitor (?php bug('5199') 
?)./li
+liRemove plugin when dropping in items dialog (?php bug('6976') ?)./li
+liBump copyright to 2010 and fix licenses./li
+liAlso load desktop files from xfce4/panel/plugins (?php bug('7013') 
?)./li
+liInstall desktop files in xfce4/plugins/actions (?php bug('7013') ?)./li
+liMake vertical clock rotation optional (?php bug('7002') ?)./li
+liFix various size allocation issues in clock (?php bug('5219') ?, ?php 
bug('3960') ?)./li
+liFix plugin dnd with locked panel and outside itembar./li
+liAdd missing function to libxfce4panel.symbols./li
+liFix ABI check on ppc (?php bug('7009') ?)./li
+liFix typo in function name./li
+liAdd application menu in default layout./li
+liFix invalid unref./li
+liMake sure launchers are properly removed and saved./li
+liFix vertical tasklist buttons in non-vertical mode./li
+liFix thinko in screen handling (?php bug('6830') ?)./li
+liWorkaround un nusable plugin when moving to other window./li
+liAdd xfce_panel_pixbuf_from_source()./li
+liUse xfce_panel_pixbuf_from_source() in XfcePanelImage./li
+liUse XfcePanelImage in the launcher menu./li
+liUse xfce_panel_pixbuf_from_source in launcher dialogs./li
+liOptimize loading icons from absolute paths./li
+liFix some compiler warnings./li
+liMove hidden name handling to plugin./li
+liUse foreach to add application to store./li
+liMove arrow button to plugin widget (?php bug('6694') ?)./li
+liOnly use orientation in systray box./li
+liRemove unused variables in box structures./li
+liDrop child structure from box and only use widgets./li
+liImprove sort function a bit + other tiny changes./li
+liMove composited child function to plugin./li
+liUse xfce_panel_pixbuf_from_source() to load known apps./li
+liAdd some known tray application names./li
+liTry WM_NAME(STRING) 

[Xfce4-commits] xfce4-panel:master l10n: Updated Norwegian Bokmal (nb) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 755d98a9ee9bffe72ddbfdf32c4ee6b8b0cd2dd5 (commit)
   from 11cff62914584dc184f4df471422bd31f1044b58 (commit)

commit 755d98a9ee9bffe72ddbfdf32c4ee6b8b0cd2dd5
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:33:32 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 100%

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

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

 po/nb.po |   90 +++--
 1 files changed, 46 insertions(+), 44 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index db6e422..ab7f677 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -9,7 +9,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-panel 4.7.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-12-19 11:08+\n
+POT-Creation-Date: 2011-01-02 17:09+\n
 PO-Revision-Date: 2005-08-18 01:10+0900\n
 Last-Translator: Terje Uriansrud te...@uriansrud.net\n
 Language-Team: Norwegian Bokmal i18n...@lister.ping.uio.no\n
@@ -31,7 +31,7 @@ msgid Customize the panel
 msgstr Tilpass panelet
 
 #: ../panel-preferences.desktop.in.h:2
-#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2200
+#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:
 #: ../migrate/main.c:84
 msgid Panel
 msgstr Panel
@@ -54,38 +54,38 @@ msgid Failed to open the documentation browser
 msgstr Klarte ikke åpne dokumentasjonsutforsker
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:887
+#: ../libxfce4panel/xfce-panel-plugin.c:889
 #: ../panel/panel-preferences-dialog.c:1048
 #, c-format
 msgid Are you sure that you want to remove \%s\?
 msgstr Er du sikker på at du vil fjerne «%s»?
 
-#: ../libxfce4panel/xfce-panel-plugin.c:892
+#: ../libxfce4panel/xfce-panel-plugin.c:894
 #: ../panel/panel-preferences-dialog.c:1051
 msgid If you remove the item from the panel, it is permanently lost.
 msgstr Hvis du sletter elementer fra panelet vil den slettes permanent.
 
 #. move item
-#: ../libxfce4panel/xfce-panel-plugin.c:1052
+#: ../libxfce4panel/xfce-panel-plugin.c:1054
 msgid _Move
 msgstr _Flytt
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1086
+#: ../libxfce4panel/xfce-panel-plugin.c:1088
 msgid Pane_l
 msgstr Pane_l
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1094 ../panel/panel-window.c:2212
+#: ../libxfce4panel/xfce-panel-plugin.c:1096 ../panel/panel-window.c:2234
 msgid Add _New Items...
 msgstr Legg til _nye elementer...
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1105 ../panel/panel-window.c:2223
+#: ../libxfce4panel/xfce-panel-plugin.c:1107 ../panel/panel-window.c:2245
 msgid Panel Pr_eferences...
 msgstr Pan_elinnstillinger...
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1122 ../panel/panel-window.c:2239
+#: ../libxfce4panel/xfce-panel-plugin.c:1124 ../panel/panel-window.c:2261
 msgid Log _Out
 msgstr L_ogg ut
 
@@ -197,15 +197,15 @@ msgstr Ingen aktive instanser av %s funnet
 msgid Failed to launch the migration application
 msgstr Klarte ikke starte migreringsapplikasjon
 
-#: ../panel/panel-application.c:1423 ../plugins/actions/actions.c:413
+#: ../panel/panel-application.c:1446 ../plugins/actions/actions.c:413
 msgid You have started X without session manager. Clicking Quit will close 
the X server.
 msgstr Du har startet X uten en øktbehandler. Ved å klikke Avslutt lukkes X 
tjeneren.
 
-#: ../panel/panel-application.c:1424 ../plugins/actions/actions.c:414
+#: ../panel/panel-application.c:1447 ../plugins/actions/actions.c:414
 msgid Are you sure you want to quit the panel?
 msgstr Er du sikker på at du vil avslutte panel?
 
-#: ../panel/panel-application.c:1432 ../plugins/actions/actions.c:422
+#: ../panel/panel-application.c:1455 ../plugins/actions/actions.c:422
 #, c-format
 msgid Failed to execute command \%s\
 msgstr Klarte ikke kjøre kommandoen «%s»
@@ -250,29 +250,29 @@ msgstr Ettersom panelet kjører i kiosk-modus, kan du 
ikke gjøre endringer på
 msgid Modifying the panel is not allowed
 msgstr Endring av panelet er ikke tillatt
 
-#: ../panel/panel-item-dialog.c:175
+#: ../panel/panel-item-dialog.c:188
 msgid Add New Items
 msgstr Legg til nye elementer
 
-#: ../panel/panel-item-dialog.c:177
+#: ../panel/panel-item-dialog.c:190
 msgid Add new plugins to the panel
 msgstr Legg til nye programtillegg i panel
 
-#: ../panel/panel-item-dialog.c:200
+#: ../panel/panel-item-dialog.c:213
 #: ../plugins/launcher/launcher-dialog.glade.h:23
 msgid _Search:
 msgstr _Søk:
 
-#: ../panel/panel-item-dialog.c:208
+#: ../panel/panel-item-dialog.c:221
 msgid Enter search phrase here
 msgstr Skriv inn søkeord her
 
-#: ../panel/panel-plugin-external.c:418
+#: ../panel/panel-plugin-external.c:420
 #, c-format
 msgid Plugin \%s\ unexpectedly left the panel, do you want to restart it?
 msgstr Programtillegg \%s\ forsvant uventet fra panelet, ønsker du å 
restarte det?
 
-#: 

[Xfce4-commits] thunar-shares-plugin:master l10n: Updated Norwegian Bokmal (nb) translation to 92%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 6d18fcd3d8037bada8e3f2e4b56317b43c1e9aea (commit)
   from 608de4484c6b17f9c18b39b4aa81c5d5b7647159 (commit)

commit 6d18fcd3d8037bada8e3f2e4b56317b43c1e9aea
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:37:22 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 92%

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

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

 po/nb.po |  176 -
 1 files changed, 92 insertions(+), 84 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index c5bb37a..534dbaa 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -2,12 +2,12 @@
 # Copyright (c) 2008 Rosetta Contributors and Canonical Ltd 2008
 # This file is distributed under the same license as the thunar-shares package.
 # Terje Uriansrud te...@uriansrud.net, 2009.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: thunar-shares\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2008-07-22 20:50-0300\n
+POT-Creation-Date: 2011-01-02 17:13+\n
 PO-Revision-Date: 2008-04-24 20:31+\n
 Last-Translator: Terje Uriansrud te...@uriansrud.net\n
 Language-Team: Norwegian Bokmal n...@li.org\n
@@ -17,158 +17,166 @@ msgstr 
 X-Launchpad-Export-Date: 2008-07-17 13:36+\n
 X-Generator: Launchpad (build Unknown)\n
 
-#: ../libshares/libshares-util.c:111
+#: ../libshares/libshares-util.c:161
 msgid Please, write a name.
 msgstr Vennligst, skriv inn navn
 
-#: ../libshares/libshares-util.c:162 ../data/dialogs.xml.h:1
-#: ../data/thunar-page.xml.h:4
+#. Warn the user
+#: ../libshares/libshares-util.c:169
+msgid Share name too long. Some old clients may have problems to access it, 
continue anyway?
+msgstr Delingsnavn for langt. Enkelte eldre klienter kan få problemer med å 
koble til, fortsette allikevel?
+
+#: ../libshares/libshares-util.c:182
+#, c-format
+msgid Error while getting share information: %s
+msgstr Feil ved henting av delingsinformasjon: %s
+
+#: ../libshares/libshares-util.c:192
+msgid Another share has the same name
+msgstr Et annet delt område har samme navn
+
+#: ../libshares/libshares-util.c:246
 msgid Cannot modify the share:
 msgstr Kan ikke endre nettverksområde
 
-#: ../libshares/libshares-util.c:232
+#: ../libshares/libshares-util.c:345
+msgid Thunar needs to add some permissions to your folder in order to share 
it. Do you agree?
+msgstr Thunar må endre rettigheter til mappen for å kunne dele den. Ønsker du 
dette?
+
+#: ../libshares/libshares-util.c:384
 msgid Error when changing folder permissions.
 msgstr Feil under endring av mapperettigheter.
 
-#: ../libshares/shares.c:146
+#: ../libshares/shares.c:165
 #, c-format
 msgid %s %s %s returned with signal %d
 msgstr %s %s %s kom tilbake med meldingen %d
 
-#: ../libshares/shares.c:155
+#: ../libshares/shares.c:174
 #, c-format
 msgid %s %s %s failed for an unknown reason
 msgstr %s %s %s feilet av en ukjent grunn
 
-#: ../libshares/shares.c:175
+#: ../libshares/shares.c:195
 #, c-format
 msgid 'net usershare' returned error %d: %s
 msgstr 'net usershare' kom tilbake med feil %d: %s
 
-#: ../libshares/shares.c:177
+#: ../libshares/shares.c:197
 #, c-format
 msgid 'net usershare' returned error %d
 msgstr 'net usershare' rkom tilbake med feil %d
 
-#: ../libshares/shares.c:208
+#: ../libshares/shares.c:231
 #, c-format
 msgid the output of 'net usershare' is not in valid UTF-8 encoding
 msgstr Utdata fra 'net usershare' er ikke i korrekt UTF-8 tegnkoding
 
-#: ../libshares/shares.c:463 ../libshares/shares.c:636
+#: ../libshares/shares.c:490 ../libshares/shares.c:702
 #, c-format
 msgid Failed
 msgstr Feilet
 
-#: ../libshares/shares.c:571
+#: ../libshares/shares.c:592
 #, c-format
 msgid Samba's testparm returned with signal %d
 msgstr Samba's testparm kom tilbake med meldingen %d
 
-#: ../libshares/shares.c:577
+#: ../libshares/shares.c:598
 #, c-format
 msgid Samba's testparm failed for an unknown reason
 msgstr Samba's testparm feilet for en ukjent grunn
 
-#: ../libshares/shares.c:592
+#: ../libshares/shares.c:613
 #, c-format
 msgid Samba's testparm returned error %d: %s
 msgstr Samba's testparm kom tilbake med feilen %d: %s
 
-#: ../libshares/shares.c:594
+#: ../libshares/shares.c:615
 #, c-format
 msgid Samba's testparm returned error %d
 msgstr Samba's testparm kom tilbake med feil %d
 
-#: ../libshares/shares.c:701
+#: ../libshares/shares.c:784
 #, c-format
 msgid Cannot remove the share for path %s: that path is not shared
 msgstr Kunne ikke fjerne deling for stien %s: stien er ikke delt
 
-#: ../libshares/shares.c:747
+#: ../libshares/shares.c:837
 #, c-format
-msgid 
-Cannot change the path of an existing share; please remove the old share 
-first and add a new one
-msgstr 
-Kunne ikke endre stien for en eksisterende deling; vennligst fjern den gamle 
-delingen først og så legg til en ny en.
+msgid Cannot change the path of an existing share; please remove the old 
share first and add a new 

[Xfce4-commits] thunar-shares-plugin:master l10n: Updated Norwegian Bokmal (nb) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to ada06531f7700134c813beb2afb76ecafcfbdda2 (commit)
   from 6d18fcd3d8037bada8e3f2e4b56317b43c1e9aea (commit)

commit ada06531f7700134c813beb2afb76ecafcfbdda2
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:39:19 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 100%

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

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

 po/nb.po |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 534dbaa..77b71a6 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -140,13 +140,15 @@ msgstr Nettverksområde
 
 #: ../thunar-plugin/tsp-page.c:368
 msgid You are not the owner of the folder.
-msgstr 
+msgstr Du er ikke eier av mappen
 
 #: ../thunar-plugin/tsp-page.c:376
 msgid 
 You may need to install Samba, check your user permissions(usershares group) 
and re-login.\n
 bMore info:/b uhttp://thunar-shares.googlecode.com//u
 msgstr 
+Du må kanskje installere Samba, kontroller dine brukerrettigheter (usershares 
gruppe) og logg inn på nytt.\n
+bMer info:/b uhttp://thunar-shares.googlecode.com//u
 
 #~ msgid Thunar - Add a share
 #~ msgstr Thunar - Legg til nettverksområde
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-battery-plugin:master l10n: Updated Norwegian Bokmal (nb) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 31068734cf878c0ef4f33249c7a5be93f1a6ef19 (commit)
   from 1888c534a9a7ea91a3f4b7546df965805a63d63e (commit)

commit 31068734cf878c0ef4f33249c7a5be93f1a6ef19
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:40:54 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 100%

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

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

 po/nb.po |   87 +++--
 1 files changed, 39 insertions(+), 48 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 5cff556..2dc6317 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -2,156 +2,147 @@
 # Copyright (C) 2007 THE xfce4-battery-plugin'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-battery-plugin 
package.
 # Terje Uriansrud t...@operamail.com, 2007.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce4-battery-plugin 0.5.0svn-r2842\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-12-27 23:53+0900\n
+POT-Creation-Date: 2011-01-02 17:05+\n
 PO-Revision-Date: 2007-06-20 14:12+0200\n
 Last-Translator: Terje Uriansrud t...@operamail.com\n
 Language-Team: Norwegian Bokmal i18n...@lister.ping.uio.no\n
-Language: nb\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: nb\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
-#: ../panel-plugin/battery.c:498
-#, fuzzy
+#: ../panel-plugin/battery.c:500
 msgid (No battery, AC on-line)
-msgstr (Nettdrift)
+msgstr (Ikke batteri, nettdrift)
 
-#: ../panel-plugin/battery.c:500
+#: ../panel-plugin/battery.c:502
 msgid (Charging from AC)
 msgstr (Lader fra nett)
 
-#: ../panel-plugin/battery.c:500
+#: ../panel-plugin/battery.c:502
 msgid (AC on-line)
 msgstr (Nettdrift)
 
-#: ../panel-plugin/battery.c:510
+#: ../panel-plugin/battery.c:512
 #, c-format
 msgid %d%% (%02d:%02d) remaining
 msgstr %d%% (%02d:%02d) gjenstående
 
-#: ../panel-plugin/battery.c:512
+#: ../panel-plugin/battery.c:514
 #, c-format
 msgid %02d:%02d remaining
 msgstr %02d:%02d gjenstående
 
-#: ../panel-plugin/battery.c:514
+#: ../panel-plugin/battery.c:516
 #, c-format
 msgid %d%% remaining
 msgstr %d%% gjenstående
 
-#: ../panel-plugin/battery.c:516
+#: ../panel-plugin/battery.c:518
 #, c-format
 msgid AC off-line
 msgstr Batteridrift
 
-#: ../panel-plugin/battery.c:580
-msgid 
-WARNING: Your battery has reached critical status. You should plug in or 
-shutdown your computer now to avoid possible data loss.
-msgstr 
-Advarsel: Batteriet har nådd kritisk lavt nivå. Du burde koble til nettdrift 
-eller skru av datamaskinen nå for å unngå tap av data.
+#: ../panel-plugin/battery.c:581
+msgid WARNING: Your battery has reached critical status. You should plug in 
or shutdown your computer now to avoid possible data loss.
+msgstr Advarsel: Batteriet har nådd kritisk lavt nivå. Du burde koble til 
nettdrift eller skru av datamaskinen nå for å unngå tap av data.
 
-#: ../panel-plugin/battery.c:594
-msgid 
-WARNING: Your battery is running low. You should consider plugging in or 
-shutting down your computer soon to avoid possible data loss.
-msgstr 
-Advarsel: Batteriet begynner å gå tomt for strøm. Du burde vurdere å gå over 
-til nettdrift eller skru av datamaskinen snart for å unngå tap av data.
+#: ../panel-plugin/battery.c:599
+msgid WARNING: Your battery is running low. You should consider plugging in 
or shutting down your computer soon to avoid possible data loss.
+msgstr Advarsel: Batteriet begynner å gå tomt for strøm. Du burde vurdere å 
gå over til nettdrift eller skru av datamaskinen snart for å unngå tap av data.
 
-#: ../panel-plugin/battery.c:679
+#: ../panel-plugin/battery.c:686
 msgid Battery
 msgstr Batteri
 
-#: ../panel-plugin/battery.c:1105
+#: ../panel-plugin/battery.c:1112
 msgid Select file
 msgstr Velg fil
 
-#: ../panel-plugin/battery.c:1146
+#: ../panel-plugin/battery.c:1153
 msgid Select command
 msgstr Velg kommando
 
-#: ../panel-plugin/battery.c:1165
+#: ../panel-plugin/battery.c:1172
 #, c-format
 msgid Unable to open the following url: %s
 msgstr Klarte ikke åpne url: %s
 
-#: ../panel-plugin/battery.c:1189 ../panel-plugin/battmon.desktop.in.in.h:1
+#: ../panel-plugin/battery.c:1196 ../panel-plugin/battmon.desktop.in.in.h:1
 msgid Battery Monitor
 msgstr Batteriovervåkning
 
-#: ../panel-plugin/battery.c:1218
+#: ../panel-plugin/battery.c:1225
 msgid Low percentage:
 msgstr Lav prosent:
 
-#: ../panel-plugin/battery.c:1229
+#: ../panel-plugin/battery.c:1236
 msgid Critical percentage:
 msgstr Kritisk prosent:
 
-#: ../panel-plugin/battery.c:1242
+#: ../panel-plugin/battery.c:1249
 msgid Low battery action:
 msgstr Lavt batteri aksjon
 
-#: ../panel-plugin/battery.c:1248 ../panel-plugin/battery.c:1289
+#: ../panel-plugin/battery.c:1255 ../panel-plugin/battery.c:1296
 msgid Do nothing
 msgstr Gjør ingenting
 
-#: ../panel-plugin/battery.c:1250 

[Xfce4-commits] xfce4-weather-plugin:master l10n: Updated Norwegian Bokmal (nb) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to cdb9c731383d11bcb907d3e560cc4257166674d1 (commit)
   from 275034744a667372ca6fd0f787b890d99ecbc2b9 (commit)

commit cdb9c731383d11bcb907d3e560cc4257166674d1
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:44:56 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 100%

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

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

 po/nb.po |   42 ++
 1 files changed, 18 insertions(+), 24 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 262877e..494d5fc 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the xfce4-weather-plugin 
package.
 # Terje Uriansrud t...@operamail.com, 2007.
 # Christian Lomsdalen christ...@vindstille.net, 2007.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce4-weather-plugin 0.6.0svn-r2842\n
@@ -71,11 +71,11 @@ msgstr Klarte ikke åpne url: %s
 msgid Weather Update
 msgstr Væroppdatering
 
-#. add refresh button to right click menu, for people who missed the middle 
mouse click feature
+#. add refresh button to right click menu, for people who missed the middle
+#. mouse click feature
 #: ../panel-plugin/weather.c:849
-#, fuzzy
 msgid _Forecast
-msgstr Værvarsel
+msgstr _Værvarsel
 
 #: ../panel-plugin/weather-config.c:39
 msgid Windchill (F)
@@ -127,11 +127,11 @@ msgstr Skriv inn mellomtjenerinnstillinger
 
 #: ../panel-plugin/weather-config.c:289
 msgid Unset
-msgstr 
+msgstr Ikke satt
 
 #: ../panel-plugin/weather-config.c:297
 msgid Detecting...
-msgstr 
+msgstr Detekterer...
 
 #: ../panel-plugin/weather-config.c:350
 msgid Measurement unit:
@@ -146,13 +146,12 @@ msgid Metric
 msgstr Metrisk
 
 #: ../panel-plugin/weather-config.c:373
-#, fuzzy
 msgid Location:
-msgstr Plasskode:
+msgstr Lokasjon:
 
 #: ../panel-plugin/weather-config.c:409
 msgid Change...
-msgstr 
+msgstr Endre...
 
 #. proxy
 #: ../panel-plugin/weather-config.c:422
@@ -173,7 +172,7 @@ msgstr Viste etiketter
 
 #: ../panel-plugin/weather-config.c:548
 msgid Animate transitions between labels
-msgstr 
+msgstr Animer transformasjon mellom etiketter
 
 #: ../panel-plugin/weather-data.c:445
 msgid km/h
@@ -201,9 +200,9 @@ msgstr mi
 
 #. display error
 #: ../panel-plugin/weather-http.c:200
-#, fuzzy, c-format
+#, c-format
 msgid Failed to get the hostname %s. Retry in %d seconds.
-msgstr Fikk ikke tak i vertsnavnet \%s\. Prøv igjen i %d sekunder.
+msgstr Fikk ikke tak i vertsnavnet %s. Prøv igjen om %d sekunder.
 
 #. display warning
 #: ../panel-plugin/weather-http.c:241
@@ -243,9 +242,8 @@ msgid Results
 msgstr Resultater
 
 #: ../panel-plugin/weather-search.c:184
-#, fuzzy
 msgid Searching...
-msgstr Oppklaring
+msgstr Søker...
 
 #: ../panel-plugin/weather-search.c:224
 msgid Search weather location code
@@ -394,6 +392,8 @@ msgid 
 \n
 More on weather.com\n
 msgstr 
+\n
+Mer på weather.com\n
 
 #: ../panel-plugin/weather-summary.c:388
 #, c-format
@@ -428,7 +428,7 @@ msgstr Værvarsel
 
 #: ../panel-plugin/weather-summary.c:590
 msgid Details
-msgstr 
+msgstr Detaljer
 
 #: ../panel-plugin/weather-translate.c:41
 msgid AM Clouds / PM Sun
@@ -619,9 +619,8 @@ msgid Heavy Rain
 msgstr Kraftig regn
 
 #: ../panel-plugin/weather-translate.c:88
-#, fuzzy
 msgid Heavy Rain Shower
-msgstr Regnbyger
+msgstr Kraftige regnbyger
 
 #: ../panel-plugin/weather-translate.c:89
 msgid Heavy Snow
@@ -772,7 +771,6 @@ msgid PM Rain / Wind
 msgstr Regn/vind
 
 #: ../panel-plugin/weather-translate.c:126
-#, fuzzy
 msgid PM Rain / Snow Showers
 msgstr Regn/Sludd
 
@@ -809,7 +807,6 @@ msgid Rain / Snow Showers
 msgstr Regn/snøbyger
 
 #: ../panel-plugin/weather-translate.c:135
-#, fuzzy
 msgid Rain / Snow Showers Early
 msgstr Regn/snøbyger
 
@@ -910,9 +907,8 @@ msgid Snow Shower
 msgstr Snøbyger
 
 #: ../panel-plugin/weather-translate.c:160
-#, fuzzy
 msgid Light Snow Shower
-msgstr Lette regnskurer
+msgstr Lett snøvær
 
 #: ../panel-plugin/weather-translate.c:161
 msgid Snow Shower / Wind
@@ -951,7 +947,6 @@ msgid T-Storm
 msgstr Tordenvær
 
 #: ../panel-plugin/weather-translate.c:170
-#, fuzzy
 msgid T-Storms
 msgstr Tordenvær
 
@@ -968,7 +963,6 @@ msgid Thunder
 msgstr Torden
 
 #: ../panel-plugin/weather-translate.c:174
-#, fuzzy
 msgid Thunder in the Vicinity
 msgstr Lokal torden
 
@@ -1094,7 +1088,7 @@ msgstr SSØ
 
 #: ../panel-plugin/weather-translate.c:223
 msgid CALM
-msgstr 
+msgstr Rolig
 
 #: ../panel-plugin/weather-translate.c:343
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-fsguard-plugin:master l10n: Updated Norwegian Bokmal (nb) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 6700f0ded0eb6cf8b3a1af974aa26e682ee97b74 (commit)
   from 97a98fab16eddfd777507ba09761f278acc66cdc (commit)

commit 6700f0ded0eb6cf8b3a1af974aa26e682ee97b74
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:46:28 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 100%

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

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

 po/nb.po |   12 +---
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index a12f1fb..f6fb8f3 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,12 +3,12 @@
 # This file is distributed under the same license as the xfce package.
 # Terje Uriansrud t...@operamail.com, 2007.
 # Christian Lomsdalen christ...@vindstille.net, 2007.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce 4-fsguard-plugin\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-08-14 22:39+0200\n
+POT-Creation-Date: 2011-01-02 17:03+\n
 PO-Revision-Date: 2007-10-04 17:29+0100\n
 Last-Translator: Christian Lomsdalen christ...@vindstille.net\n
 Language-Team: Norwegian Bokmal i18n...@lister.ping.uio.no\n
@@ -19,7 +19,7 @@ msgstr 
 
 #: ../panel-plugin/fsguard.c:244
 msgid Unable to find an appropriate application to open the mount point
-msgstr 
+msgstr Klarte ikke finne en passende applikasjon til å åpne monteringspunkt
 
 #: ../panel-plugin/fsguard.c:281 ../panel-plugin/fsguard.c:282
 #, c-format
@@ -71,14 +71,12 @@ msgid Mount point
 msgstr Monteringspunkt
 
 #: ../panel-plugin/fsguard.c:596
-#, fuzzy
 msgid Warning limit (%)
-msgstr Høy advarselgrense (MB)
+msgstr Advarselgrense (%)
 
 #: ../panel-plugin/fsguard.c:601
-#, fuzzy
 msgid Urgent limit (%)
-msgstr Øyeblikkelig alarmgrense (MB)
+msgstr Alarmgrense (%)
 
 #: ../panel-plugin/fsguard.c:621
 msgid User Interface
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master l10n: Updated Norwegian Bokmal (nb) translation to 43%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to bbed42a8984b9f0512ff65fd4f4d31c524ec2601 (commit)
   from 54c627d805baaffce406f1b5b4a8e1a712d2b427 (commit)

commit bbed42a8984b9f0512ff65fd4f4d31c524ec2601
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 19:53:12 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 43%

New status: 54 messages complete with 26 fuzzies and 44 untranslated.

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

 po/nb.po |   72 +
 1 files changed, 25 insertions(+), 47 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index af78012..dc94315 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # Terje Uriansrud t...@operamail.com, 2007.
 # Terje Uriansrud te...@uriansrud.net, 2009.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: ristretto\n
@@ -45,67 +45,59 @@ msgstr _Fil
 
 #: ../src/main_window.c:278
 msgid _Open
-msgstr 
+msgstr Å_pne
 
 #: ../src/main_window.c:278
-#, fuzzy
 msgid Open an image
 msgstr Åpne bilde
 
 #: ../src/main_window.c:279
-#, fuzzy
 msgid Open _Folder
 msgstr Åp_ne mappe
 
 #: ../src/main_window.c:279
-#, fuzzy
 msgid Open a folder
 msgstr Åpne mappe
 
 #: ../src/main_window.c:280
 msgid _Save copy
-msgstr 
+msgstr _Lagre kopi
 
 #: ../src/main_window.c:280
 msgid Save a copy of the image
-msgstr 
+msgstr Lagre en kpi av bildet
 
 #: ../src/main_window.c:281
 msgid _Print
-msgstr 
+msgstr _Skriv ut
 
 #: ../src/main_window.c:281
 msgid Print the image
-msgstr 
+msgstr Skriv ut bildet
 
 #: ../src/main_window.c:282
-#, fuzzy
 msgid _Close
-msgstr Lukk _alle
+msgstr L_ukk
 
 #: ../src/main_window.c:282
 msgid Close this image
-msgstr 
+msgstr Lukk dette bildet
 
 #: ../src/main_window.c:283
-#, fuzzy
 msgid _Close All
 msgstr Lukk _alle
 
 #: ../src/main_window.c:283
-#, fuzzy
 msgid Close all images
-msgstr Lukk _alle
+msgstr Lukk alle bilder
 
 #: ../src/main_window.c:284
-#, fuzzy
 msgid _Quit
-msgstr _Rediger
+msgstr _Avslutt
 
 #: ../src/main_window.c:284
-#, fuzzy
 msgid Quit Ristretto
-msgstr Ristretto
+msgstr Avslutt Ristretto
 
 #. Edit Menu
 #: ../src/main_window.c:286
@@ -113,23 +105,20 @@ msgid _Edit
 msgstr _Rediger
 
 #: ../src/main_window.c:287
-#, fuzzy
 msgid _Open with...
-msgstr Åpne med...
+msgstr Å_pne med...
 
 #: ../src/main_window.c:288
-#, fuzzy
 msgid _Sorting
-msgstr _Skalere
+msgstr _Sorter
 
 #: ../src/main_window.c:289
 msgid _Delete
-msgstr 
+msgstr S_lett
 
 #: ../src/main_window.c:290
-#, fuzzy
 msgid _Preferences
-msgstr Bildefremviser innstillinger
+msgstr Innstillinger
 
 #. View Menu
 #: ../src/main_window.c:292
@@ -138,14 +127,13 @@ msgstr _Vis
 
 #: ../src/main_window.c:293
 msgid _Fullscreen
-msgstr 
+msgstr _Fullskjerm
 
 #: ../src/main_window.c:294
 msgid _Leave Fullscreen
-msgstr 
+msgstr _Avslutt fullskjerm
 
 #: ../src/main_window.c:295
-#, fuzzy
 msgid _Set as Wallpaper
 msgstr Bruk _som bakgrunnsbilde
 
@@ -155,21 +143,20 @@ msgid _Zooming
 msgstr _Skalere
 
 #: ../src/main_window.c:298
-#, fuzzy
 msgid Zoom _In
-msgstr _Skalere
+msgstr _Forstørre
 
 #: ../src/main_window.c:299
 msgid Zoom _Out
-msgstr 
+msgstr _Forminske
 
 #: ../src/main_window.c:300
 msgid Zoom _Fit
-msgstr 
+msgstr Til_pass
 
 #: ../src/main_window.c:301
 msgid _Normal Size
-msgstr 
+msgstr _Vanlig størrelse
 
 #. Rotation submenu
 #: ../src/main_window.c:303
@@ -360,9 +347,7 @@ msgstr Lagre
 #: ../src/main_window.c:2296
 #, fuzzy, c-format
 msgid Are you sure you want to delete image '%s' from disk?
-msgstr 
-Er du sikker på at du vil tømme Ristretto's liste over nylig brukte 
-dokumenter?
+msgstr Er du sikker på at du vil tømme Ristretto's liste over nylig brukte 
dokumenter?
 
 #: ../src/preferences_dialog.c:222
 msgid Display
@@ -582,11 +567,9 @@ msgstr 
 msgid Ristretto Photo Viewer
 msgstr 
 
-#, fuzzy
 #~ msgid Ristretto
 #~ msgstr Ristretto
 
-#, fuzzy
 #~ msgid _Thumbnail Bar
 #~ msgstr Miniatyrbilder
 
@@ -608,16 +591,11 @@ msgstr 
 #~ msgid H_ide
 #~ msgstr _Skjul
 
-#~ msgid 
-#~ The orientation of one or more images has been modified, do you want to 
-#~ save the changes?
-#~ msgstr 
-#~ Orientering av et eller flere bilder er endret, vil du lagre endringene?
+#~ msgid The orientation of one or more images has been modified, do you want 
to save the changes?
+#~ msgstr Orientering av et eller flere bilder er endret, vil du lagre 
endringene?
 
 #~ msgid _Preload images (GUI more responsive but more CPU-intensive)
-#~ msgstr 
-#~ _Forhåndlasting av bilder (programmet blir raskere men krever mer 
-#~ prosessorkraft)
+#~ msgstr _Forhåndlasting av bilder (programmet blir raskere men krever mer 
prosessorkraft)
 
 #~ msgid Hide the thumbnails bar during slideshow
 #~ msgstr Skjul miniatyrbilderaden under lysbildefremvisning
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org

[Xfce4-commits] www:master Fix a few newlines

2011-01-02 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to 56db8cd64839930d24347702012fb3e1d225e517 (commit)
   from dccfb4870a6f25c1a2dfbe8bc3a464fa5868a0a8 (commit)

commit 56db8cd64839930d24347702012fb3e1d225e517
Author: Jannis Pohlmann jan...@xfce.org
Date:   Sun Jan 2 20:03:26 2011 +0100

Fix a few newlines

 i18n/news/en.news.php |   12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/i18n/news/en.news.php b/i18n/news/en.news.php
index e04416f..83d3759 100644
--- a/i18n/news/en.news.php
+++ b/i18n/news/en.news.php
@@ -54,14 +54,14 @@ $news = array (
  
[url=http://www.tx-us.xfce.org/archive/xfce/4.8pre3/src]http://www.tx-us.xfce.org/archive/xfce/4.8pre3/src[/url][br];.
  
[url=http://www.p0llux.be/xfce/xfce/4.8pre3/src]http://www.p0llux.be/xfce/xfce/4.8pre3/src[/url][br];.
  
[url=http://www.ca-us.xfce.org/archive/xfce/4.8pre3/src]http://www.ca-us.xfce.org/archive/xfce/4.8pre3/src[/url][br];.
- [br][br].
+ [br].
  A tarball including all individual releases can be 
downloaded from here:.
  [br][br].
- 
[url=http://archive.xfce.org/xfce/4.8pre3/fat_tarballs]http://archive.xfce.org/xfce/4.8pre3/fat_tarballs[/url];.
- 
[url=http://www.tx-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs]http://www.tx-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs[/url];.
- 
[url=http://www.p0llux.be/xfce/xfce/4.8pre3/fat_tarballs]http://www.p0llux.be/xfce/xfce/4.8pre3/fat_tarballs[/url];.
- 
[url=http://www.ca-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs]http://www.ca-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs[/url];.
- [br][br].
+ 
[url=http://archive.xfce.org/xfce/4.8pre3/fat_tarballs]http://archive.xfce.org/xfce/4.8pre3/fat_tarballs[/url][br];.
+ 
[url=http://www.tx-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs]http://www.tx-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs[/url][br];.
+ 
[url=http://www.p0llux.be/xfce/xfce/4.8pre3/fat_tarballs]http://www.p0llux.be/xfce/xfce/4.8pre3/fat_tarballs[/url][br];.
+ 
[url=http://www.ca-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs]http://www.ca-us.xfce.org/archive/xfce/4.8pre3/fat_tarballs[/url][br];.
+ [br].
  We're hoping that you will enjoy today's release. Thanks 
a lot to everyone contributing this time around! We're pretty sure 4.8 is gonna 
rock. .
  [br][br].
  Kind regards,.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master Add 4.8pre3 release announcement.

2011-01-02 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to dccfb4870a6f25c1a2dfbe8bc3a464fa5868a0a8 (commit)
   from aabf7eb621b8db616e5f16a28c770db3d7764173 (commit)

commit dccfb4870a6f25c1a2dfbe8bc3a464fa5868a0a8
Author: Jannis Pohlmann jan...@xfce.org
Date:   Sun Jan 2 20:02:21 2011 +0100

Add 4.8pre3 release announcement.

 i18n/news/en.news.php |   43 +++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/i18n/news/en.news.php b/i18n/news/en.news.php
index d997ef3..e04416f 100644
--- a/i18n/news/en.news.php
+++ b/i18n/news/en.news.php
@@ -27,6 +27,49 @@ $news = array (
 'content' = 'stuff you want to say',
 ),
 */
+  array (
+'id'  = 26,
+'date'= 2 jan 2011,
+'author'  = The Xfce development team,
+'title'   = Xfce 4.8pre3 Released,
+'content' = Today we are pleased to announce the third and hopefully 
final preview release of Xfce 4.8 which is set to be pushed out to the public 
on January 16th, 2011. Compared to Xfce 4.8pre2 this release mostly features 
translation updates and bug fixes. .
+ [br][br].
+ With christmas and new year's eve between 4.8pre2 and 
4.8pre3 it comes as no surprise that for most components only a few issues were 
tackled. .
+ [br][br].
+ Among other things we updated the default keyboard 
shortcuts to include monitor keys. The status icon of the file manager's 
progress dialog is now properly hidden when the dialog is destroyed. It's 
wallpaper plugin is now capable of handling filenames with spaces. The 
environment variables of commands launched from the Xfce run dialog were not 
set properly, so we fixed that so that commands launched from the dialog always 
inherit the environment of the Xfce session. .
+ [br][br].
+ We also made the --reboot and --halt parameters of 
xfce4-session-logout work again which previously simply logged out the active 
user. In order to avoid a race condition at session startup and in order to 
speed things up a little more we no longer use xrdb to update xft and cursor 
settings and instead, update the related XSETTINGS properties ourselves. .
+ [br][br].
+ In the window manager xfwm4, we aligned the time period 
required for a double click with that of normal applications. Via the hidden 
option [i]/general/mousewheel_rollup[/i] one can now disable windows being 
rolled up via the mouse wheel. The window manager now also properly handles 
resolution changes in fullscreen windows like those appearing in games. Xfwm4's 
application switcher now only appears once in cloned mode. .
+ [br][br].
+ This may sound like a few useful fixes but it's nothing 
compared to the amount of work that went into the new Xfce panel once again. 
Around 20+ known bugs and regressions were fixed. Here is a short excerpt of 
the complete changelog: Translation domains were fixed for external plugins, 
plugins can be reordered with DND again, double-clicking items in the item 
editor shows their preferences, dragging items to the item editor dialog 
removes them from the panel again, tasklist windows can now be filtered by 
monitor. Another issue that appeared recently and has now been fixed is the 
icon sizing in the notification area, also known as the systray..
+ [br][br].
+ Xfce 4.8pre3 also features a lot of translation updates, 
as can be seen in [url=http://xfce.org/documentation/changelogs/4.8pre3]the 
complete changelog[/url]..
+ [br][br].
+ Since we're following the Xfce 
[url=http://wiki.xfce.org/releng/release-model]release model[/url] for 4.8, 
we'd normally announce code freeze and the creation of early lifecycle support 
branches today. We decided against this because there are not enough people 
active to take care of all this at the moment. So we will continue fixing bugs 
in master branches as we did between 4.8pre2 and 4.8pre3. .
+ [br][br].
+ Release tarballs are available from the following 
mirrors (please give them a few hours to synchronize):.
+ [br][br].
+ 
[url=http://archive.xfce.org/xfce/4.8pre3/src]http://archive.xfce.org/xfce/4.8pre3/src[/url][br];.
+ 
[url=http://www.tx-us.xfce.org/archive/xfce/4.8pre3/src]http://www.tx-us.xfce.org/archive/xfce/4.8pre3/src[/url][br];.
+ 
[url=http://www.p0llux.be/xfce/xfce/4.8pre3/src]http://www.p0llux.be/xfce/xfce/4.8pre3/src[/url][br];.
+ 
[url=http://www.ca-us.xfce.org/archive/xfce/4.8pre3/src]http://www.ca-us.xfce.org/archive/xfce/4.8pre3/src[/url][br];.
+ [br][br].
+ A tarball including all individual releases can be 
downloaded from 

[Xfce4-commits] ristretto:master l10n: Updated Norwegian Bokmal (nb) translation to 98%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to ec327403ed10251b25eb3682ddcd1455f22d5654 (commit)
   from bbed42a8984b9f0512ff65fd4f4d31c524ec2601 (commit)

commit ec327403ed10251b25eb3682ddcd1455f22d5654
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 20:05:45 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 98%

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

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

 po/nb.po |  155 +++---
 1 files changed, 67 insertions(+), 88 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index dc94315..e53cff5 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -160,7 +160,6 @@ msgstr _Vanlig størrelse
 
 #. Rotation submenu
 #: ../src/main_window.c:303
-#, fuzzy
 msgid _Rotation
 msgstr _Roter
 
@@ -179,19 +178,19 @@ msgstr _Gå
 
 #: ../src/main_window.c:308
 msgid _Forward
-msgstr 
+msgstr _Neste
 
 #: ../src/main_window.c:309
 msgid _Back
-msgstr 
+msgstr _Forrige
 
 #: ../src/main_window.c:310
 msgid _First
-msgstr 
+msgstr _Første
 
 #: ../src/main_window.c:311
 msgid _Last
-msgstr 
+msgstr _Siste
 
 #. Help Menu
 #: ../src/main_window.c:313
@@ -200,92 +199,87 @@ msgstr _Hjelp
 
 #: ../src/main_window.c:315
 msgid _Contents
-msgstr 
+msgstr _Innhold
 
 #: ../src/main_window.c:317
 msgid Display ristretto user manual
-msgstr 
+msgstr Vis Ristretto brukermanual
 
 #: ../src/main_window.c:320
 msgid _About
-msgstr 
+msgstr _Om
 
 #: ../src/main_window.c:322
 msgid Display information about ristretto
-msgstr 
+msgstr Vis informasjon om Ristretto
 
 #. Position Menu
 #: ../src/main_window.c:325
 msgid _Position
-msgstr 
+msgstr _Posisjon
 
 #. Misc
 #: ../src/main_window.c:327
 msgid Leave _Fullscreen
-msgstr 
+msgstr Avslutt _fullskjerm
 
 #. Toggle visibility of the main file toolbar
 #: ../src/main_window.c:335
-#, fuzzy
 msgid Show _File Toolbar
-msgstr Vis _verktøylinje
+msgstr Vis _filverktøylinje
 
 #. Toggle visibility of the main navigation toolbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Navigation Toolbar
-msgstr Vis _verktøylinje
+msgstr Vis _navigasjonsverktøylinje
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:339
-#, fuzzy
 msgid Show _Thumbnailbar
-msgstr Vis _verktøylinje
+msgstr Vis _miniatyrlinje
 
 #. Sort by Filename
 #: ../src/main_window.c:346
 msgid sort by filename
-msgstr 
+msgstr sorter etter filnavn
 
 #. Sort by Date
 #: ../src/main_window.c:348
 msgid sort by date
-msgstr 
+msgstr sorter etter dato
 
 #: ../src/main_window.c:354
 msgid Left
-msgstr 
+msgstr Venstre
 
 #: ../src/main_window.c:355
 msgid Right
-msgstr 
+msgstr Høyre
 
 #: ../src/main_window.c:356
 msgid Top
-msgstr 
+msgstr Topp
 
 #: ../src/main_window.c:357
 msgid Bottom
-msgstr 
+msgstr Bunn
 
 #. Create Play/Pause Slideshow actions
 #: ../src/main_window.c:451
 msgid _Play
-msgstr 
+msgstr _Start
 
 #: ../src/main_window.c:451
-#, fuzzy
 msgid Play slideshow
 msgstr Start lysbildefremvisning
 
 #: ../src/main_window.c:452
 msgid _Pause
-msgstr 
+msgstr _Pause
 
 #: ../src/main_window.c:452
-#, fuzzy
 msgid Pause slideshow
-msgstr Start lysbildefremvisning
+msgstr Pause lysbildefremvisning
 
 #. Create Recently used items Action
 #: ../src/main_window.c:455
@@ -293,26 +287,24 @@ msgid _Recently used
 msgstr Nylig _brukt
 
 #: ../src/main_window.c:455
-#, fuzzy
 msgid Recently used
-msgstr Nylig _brukt
+msgstr Nylig brukt
 
 #: ../src/main_window.c:542 ../src/main_window.c:864
 msgid Press open to select an image
-msgstr 
+msgstr Trykk åpne for å velge et bilde
 
 #: ../src/main_window.c:851 ../src/main_window.c:856
 msgid Empty
-msgstr 
+msgstr Tom
 
 #: ../src/main_window.c:1647
 msgid Developer:
 msgstr Utvikler:
 
 #: ../src/main_window.c:1657
-#, fuzzy
 msgid Ristretto is an imageviewer for the Xfce desktop environment.
-msgstr Ristretto er en rask og lettvekts bildefremviser for Xfce skrivebordet
+msgstr Ristretto er en bildefremviser for Xfce skrivebordsmiljøet
 
 #: ../src/main_window.c:1665
 msgid translator-credits
@@ -324,11 +316,11 @@ msgstr Åpne bilde
 
 #: ../src/main_window.c:1994
 msgid Images
-msgstr 
+msgstr Bilder
 
 #: ../src/main_window.c:1999
 msgid .jp(e)g
-msgstr 
+msgstr .jp(e)g
 
 #: ../src/main_window.c:2022 ../src/main_window.c:2039
 #: ../src/main_window.c:2186 ../src/main_window.c:2201
@@ -340,32 +332,29 @@ msgid Open folder
 msgstr Åpne mappe
 
 #: ../src/main_window.c:2224
-#, fuzzy
 msgid Save copy
-msgstr Lagre
+msgstr Lagre kopi
 
 #: ../src/main_window.c:2296
-#, fuzzy, c-format
+#, c-format
 msgid Are you sure you want to delete image '%s' from disk?
-msgstr Er du sikker på at du vil tømme Ristretto's liste over nylig brukte 
dokumenter?
+msgstr Er du sikker på at du vil slette bildet '%s' fra disken?
 
 #: ../src/preferences_dialog.c:222
 msgid Display
 msgstr Skjerm
 
 #: ../src/preferences_dialog.c:227
-#, fuzzy
 msgid Background color
 msgstr Bakgrunnsfarge
 
 #: 

[Xfce4-commits] ristretto:master l10n: Updated Norwegian Bokmal (nb) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 9793c5e366cced3857a65065f3e0ac130738ad9b (commit)
   from ec327403ed10251b25eb3682ddcd1455f22d5654 (commit)

commit 9793c5e366cced3857a65065f3e0ac130738ad9b
Author: Terje Uriansrud te...@uriansrud.net
Date:   Sun Jan 2 20:06:35 2011 +0100

l10n: Updated Norwegian Bokmal (nb) translation to 100%

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

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

 po/nb.po |6 ++
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index e53cff5..7d5bf6a 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -477,14 +477,12 @@ msgid Monitor:
 msgstr Skjerm:
 
 #: ../src/xfce_wallpaper_manager.c:90
-#, fuzzy
 msgid Brightness:
-msgstr Brightness:
+msgstr Lys:
 
 #: ../src/xfce_wallpaper_manager.c:91
-#, fuzzy
 msgid Saturation:
-msgstr Saturation:
+msgstr Metning:
 
 #: ../src/xfce_wallpaper_manager.c:123
 msgid Auto
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master Add missing appfinder section to the 4.8pre3 changelog.

2011-01-02 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to 83e9fa819cb78a82a4e713f3aeb6ce6d1b95ed19 (commit)
   from 56db8cd64839930d24347702012fb3e1d225e517 (commit)

commit 83e9fa819cb78a82a4e713f3aeb6ce6d1b95ed19
Author: Jannis Pohlmann jan...@xfce.org
Date:   Sun Jan 2 20:18:46 2011 +0100

Add missing appfinder section to the 4.8pre3 changelog.

 i18n/documentation/changelogs/4.8pre3.en.php |6 ++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/i18n/documentation/changelogs/4.8pre3.en.php 
b/i18n/documentation/changelogs/4.8pre3.en.php
index 7cc9981..c594ad7 100644
--- a/i18n/documentation/changelogs/4.8pre3.en.php
+++ b/i18n/documentation/changelogs/4.8pre3.en.php
@@ -51,6 +51,12 @@ function bug ($id){
 liTranslation updates (he, de, zh_TW, sk, ru, pt, cs, ja, en_GB, sv, id, 
ug)./li
 /ul
 
+h3Application Finder em(xfce4-appfinder)/em:/h3
+
+ul
+liTranslation updates (pt, ja, he, lt, zh_CN, pt_BR, sk, cs, en_GB, nb, hr, 
pl, ar)./li
+/ul
+
 h3Panel em(xfce4-panel)/em:/h3
 
 ul
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:master l10n: Updated Catalan (Valencian) (ca) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to e06ea9e77756a104489569850a0f769dfb4b98ae (commit)
   from 755d98a9ee9bffe72ddbfdf32c4ee6b8b0cd2dd5 (commit)

commit e06ea9e77756a104489569850a0f769dfb4b98ae
Author: Harald Servat redcr...@gmail.com
Date:   Sun Jan 2 20:24:31 2011 +0100

l10n: Updated Catalan (Valencian) (ca) translation to 100%

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

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

 po/ca.po |   90 +++--
 1 files changed, 46 insertions(+), 44 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 4db68de..4c26658 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@ msgid 
 msgstr 
 Project-Id-Version: \n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-12-19 11:08+\n
+POT-Creation-Date: 2011-01-02 17:09+\n
 PO-Revision-Date: \n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: catalan xfce-i...@xfce.org\n
@@ -36,7 +36,7 @@ msgid Customize the panel
 msgstr Personalitzar el quadre
 
 #: ../panel-preferences.desktop.in.h:2
-#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2200
+#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:
 #: ../migrate/main.c:84
 msgid Panel
 msgstr Quadre
@@ -59,38 +59,38 @@ msgid Failed to open the documentation browser
 msgstr No s'ha pogut obrir el navegador de documentació
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:887
+#: ../libxfce4panel/xfce-panel-plugin.c:889
 #: ../panel/panel-preferences-dialog.c:1048
 #, c-format
 msgid Are you sure that you want to remove \%s\?
 msgstr Esteu segur de voler suprimir «%s»?
 
-#: ../libxfce4panel/xfce-panel-plugin.c:892
+#: ../libxfce4panel/xfce-panel-plugin.c:894
 #: ../panel/panel-preferences-dialog.c:1051
 msgid If you remove the item from the panel, it is permanently lost.
 msgstr Si suprimiu l'element del quadre, es perdrà permanentment.
 
 #. move item
-#: ../libxfce4panel/xfce-panel-plugin.c:1052
+#: ../libxfce4panel/xfce-panel-plugin.c:1054
 msgid _Move
 msgstr _Mou
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1086
+#: ../libxfce4panel/xfce-panel-plugin.c:1088
 msgid Pane_l
 msgstr _Quadre
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1094 ../panel/panel-window.c:2212
+#: ../libxfce4panel/xfce-panel-plugin.c:1096 ../panel/panel-window.c:2234
 msgid Add _New Items...
 msgstr Afegir elements _nous…
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1105 ../panel/panel-window.c:2223
+#: ../libxfce4panel/xfce-panel-plugin.c:1107 ../panel/panel-window.c:2245
 msgid Panel Pr_eferences...
 msgstr Pr_eferències del quadre…
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1122 ../panel/panel-window.c:2239
+#: ../libxfce4panel/xfce-panel-plugin.c:1124 ../panel/panel-window.c:2261
 msgid Log _Out
 msgstr _Sortir
 
@@ -202,15 +202,15 @@ msgstr No s'ha trobat una instància en marxa de %s
 msgid Failed to launch the migration application
 msgstr No s'ha pogut iniciar l'aplicació de migració
 
-#: ../panel/panel-application.c:1423 ../plugins/actions/actions.c:413
+#: ../panel/panel-application.c:1446 ../plugins/actions/actions.c:413
 msgid You have started X without session manager. Clicking Quit will close 
the X server.
 msgstr Heu iniciat X sense un gestor de sessions. Premeu Sortir per a sortir 
del servidor X.
 
-#: ../panel/panel-application.c:1424 ../plugins/actions/actions.c:414
+#: ../panel/panel-application.c:1447 ../plugins/actions/actions.c:414
 msgid Are you sure you want to quit the panel?
 msgstr Esteu segurs que voleu sortir del panell?
 
-#: ../panel/panel-application.c:1432 ../plugins/actions/actions.c:422
+#: ../panel/panel-application.c:1455 ../plugins/actions/actions.c:422
 #, c-format
 msgid Failed to execute command \%s\
 msgstr No s'ha pogut llançar la comanda «%s»
@@ -259,29 +259,29 @@ msgstr El quadre està executant-se en mode Kiosk; no 
esteu permesos de canviar
 msgid Modifying the panel is not allowed
 msgstr No es pot modificar el quadre
 
-#: ../panel/panel-item-dialog.c:175
+#: ../panel/panel-item-dialog.c:188
 msgid Add New Items
 msgstr Afegeix elements nous
 
-#: ../panel/panel-item-dialog.c:177
+#: ../panel/panel-item-dialog.c:190
 msgid Add new plugins to the panel
 msgstr Afegir nous elements al quadre
 
-#: ../panel/panel-item-dialog.c:200
+#: ../panel/panel-item-dialog.c:213
 #: ../plugins/launcher/launcher-dialog.glade.h:23
 msgid _Search:
 msgstr _Cerca:
 
-#: ../panel/panel-item-dialog.c:208
+#: ../panel/panel-item-dialog.c:221
 msgid Enter search phrase here
 msgstr Introduïu la frase a cercar aquí
 
-#: ../panel/panel-plugin-external.c:418
+#: ../panel/panel-plugin-external.c:420
 #, c-format
 msgid Plugin \%s\ unexpectedly left the panel, do you want to restart it?
 msgstr El connector del quadre \%s\ ha finalitzat inesperadament. Voleu 
reiniciar-lo?
 
-#: 

[Xfce4-commits] xfce4-battery-plugin:master l10n: Updated Catalan (Valencian) (ca) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 67335eaf19954d17160ce7f87e1a2ea01b6d4733 (commit)
   from 31068734cf878c0ef4f33249c7a5be93f1a6ef19 (commit)

commit 67335eaf19954d17160ce7f87e1a2ea01b6d4733
Author: Harald Servat redcr...@gmail.com
Date:   Sun Jan 2 20:25:10 2011 +0100

l10n: Updated Catalan (Valencian) (ca) translation to 100%

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

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

 po/ca.po |   87 +++--
 1 files changed, 39 insertions(+), 48 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index bad4dca..2b77ca8 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,157 +2,148 @@
 # Copyright (C) 2006-2007 The Xfce development team.
 # This file is distributed under the same license as the xfce4-battery-plugin 
package.
 # Carles Muñoz Gorriz carle...@internautas.org, 2006, 2007.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce4-battery-plugin 0.5.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-12-27 23:53+0900\n
+POT-Creation-Date: 2011-01-02 17:05+\n
 PO-Revision-Date: 2007-05-11 18:31+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan xfce-i...@xfce.org\n
-Language: ca\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: ca\n
 Plural-Forms: Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Poedit-SourceCharset: utf-8\n
 
-#: ../panel-plugin/battery.c:498
-#, fuzzy
+#: ../panel-plugin/battery.c:500
 msgid (No battery, AC on-line)
-msgstr (En la línia elèctrica)
+msgstr (Sense bateria, en la línia elèctrica)
 
-#: ../panel-plugin/battery.c:500
+#: ../panel-plugin/battery.c:502
 msgid (Charging from AC)
 msgstr (Carregant de la corrent)
 
-#: ../panel-plugin/battery.c:500
+#: ../panel-plugin/battery.c:502
 msgid (AC on-line)
 msgstr (En la línia elèctrica)
 
-#: ../panel-plugin/battery.c:510
+#: ../panel-plugin/battery.c:512
 #, c-format
 msgid %d%% (%02d:%02d) remaining
 msgstr %d%% (%02d:%02d) restants
 
-#: ../panel-plugin/battery.c:512
+#: ../panel-plugin/battery.c:514
 #, c-format
 msgid %02d:%02d remaining
 msgstr %02d:%02d restants
 
-#: ../panel-plugin/battery.c:514
+#: ../panel-plugin/battery.c:516
 #, c-format
 msgid %d%% remaining
 msgstr %d%% restants
 
-#: ../panel-plugin/battery.c:516
+#: ../panel-plugin/battery.c:518
 #, c-format
 msgid AC off-line
 msgstr Desconnectat de la corrent
 
-#: ../panel-plugin/battery.c:580
-msgid 
-WARNING: Your battery has reached critical status. You should plug in or 
-shutdown your computer now to avoid possible data loss.
-msgstr 
-AVÍS: La bateria està en una situació crítica. Per evitar possibles pèrdues 
-d'informació hauríeu d'endollar o apagar l'ordinador ara.
+#: ../panel-plugin/battery.c:581
+msgid WARNING: Your battery has reached critical status. You should plug in 
or shutdown your computer now to avoid possible data loss.
+msgstr AVÍS: La bateria està en una situació crítica. Per evitar possibles 
pèrdues d'informació hauríeu d'endollar o apagar l'ordinador ara.
 
-#: ../panel-plugin/battery.c:594
-msgid 
-WARNING: Your battery is running low. You should consider plugging in or 
-shutting down your computer soon to avoid possible data loss.
-msgstr 
-AVÍS: La vostra bateria està baixa de càrrega. Hauríeu de pensar en endollar-
-la o apagar l'ordinador aviat per evitar possibles pèrdues d'informació.
+#: ../panel-plugin/battery.c:599
+msgid WARNING: Your battery is running low. You should consider plugging in 
or shutting down your computer soon to avoid possible data loss.
+msgstr AVÍS: La vostra bateria està baixa de càrrega. Hauríeu de pensar en 
endollar-la o apagar l'ordinador aviat per evitar possibles pèrdues 
d'informació.
 
-#: ../panel-plugin/battery.c:679
+#: ../panel-plugin/battery.c:686
 msgid Battery
 msgstr Bateria
 
-#: ../panel-plugin/battery.c:1105
+#: ../panel-plugin/battery.c:1112
 msgid Select file
 msgstr Seleccioneu el fitxer
 
-#: ../panel-plugin/battery.c:1146
+#: ../panel-plugin/battery.c:1153
 msgid Select command
 msgstr Seleccioneu ordre
 
-#: ../panel-plugin/battery.c:1165
+#: ../panel-plugin/battery.c:1172
 #, c-format
 msgid Unable to open the following url: %s
 msgstr No s'ha pogut obrir la url: %s
 
-#: ../panel-plugin/battery.c:1189 ../panel-plugin/battmon.desktop.in.in.h:1
+#: ../panel-plugin/battery.c:1196 ../panel-plugin/battmon.desktop.in.in.h:1
 msgid Battery Monitor
 msgstr Monitor de la bateria
 
-#: ../panel-plugin/battery.c:1218
+#: ../panel-plugin/battery.c:1225
 msgid Low percentage:
 msgstr baixa (percentatge):
 
-#: ../panel-plugin/battery.c:1229
+#: ../panel-plugin/battery.c:1236
 msgid Critical percentage:
 msgstr Perillosament baixa (percentatge):
 
-#: ../panel-plugin/battery.c:1242
+#: ../panel-plugin/battery.c:1249
 msgid Low battery action:
 msgstr Acció per baixa bateria:
 
-#: ../panel-plugin/battery.c:1248 ../panel-plugin/battery.c:1289

[Xfce4-commits] xfce4-cpufreq-plugin:master l10n: Updated Catalan (Valencian) (ca) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to a5b7847d496211994c5ca1140d9d0935ddd59cd7 (commit)
   from 80d0cc4a23cfc545077ddef7fe74fe74ea109675 (commit)

commit a5b7847d496211994c5ca1140d9d0935ddd59cd7
Author: Harald Servat redcr...@gmail.com
Date:   Sun Jan 2 20:29:40 2011 +0100

l10n: Updated Catalan (Valencian) (ca) translation to 100%

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

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

 po/ca.po |  113 ++
 1 files changed, 99 insertions(+), 14 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index fe74d68..4e911ae 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,13 +3,13 @@
 # This file is distributed under the same license as the
 # xfce4-cpufreq-plugin package.
 # Carles Muñoz Gorriz carle...@internautas.org, 2006.
-#
-#
+# 
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce4-cpufreq-plugin 0.2\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-09-10 21:29+0200\n
+POT-Creation-Date: 2011-01-02 17:05+\n
 PO-Revision-Date: 2006-12-02 12:07+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan xfce-i...@xfce.org\n
@@ -19,27 +19,107 @@ msgstr 
 Plural-Forms: Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Poedit-SourceCharset: utf-8\n
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:72
+#: ../panel-plugin/xfce4-cpufreq-configure.c:103
+msgid Configure CPU Frequency Monitor
+msgstr Configura el monitor de freqüència de la CPU
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:105
+msgid Configure the CPU frequency plugin
+msgstr Configura el connector de freqüència de la CPU
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:122
+msgid bMonitor/b
+msgstr bMonitor/b
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:137
+msgid Timeout Interval:
+msgstr Interval d'espera:
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:153
+msgid bPanel/b
+msgstr bPanell/b
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:170
+msgid Display CPU:
+msgstr Mostra CPU:
+
+#. check buttons for display widgets in panel
+#: ../panel-plugin/xfce4-cpufreq-configure.c:189
+msgid Show frame
+msgstr Mostra marc
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:194
+msgid Show CPU icon
+msgstr Mostra icona de la CPU
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:199
+msgid Show CPU frequency
+msgstr Mostra la freqüència de la CPU
+
+#: ../panel-plugin/xfce4-cpufreq-configure.c:204
+msgid Show CPU governor
+msgstr Mostra el gestor de la CPU
+
+#: ../panel-plugin/xfce4-cpufreq-linux.c:412
+msgid 
+Your system does not support cpufreq.\n
+The applet only shows the current cpu frequency
+msgstr 
+El vostre sistema no suporta cpufreq.\n
+\r\n
+El panell només mostra la freqüència actual de la CPU.
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:64
+msgid Scaling driver:
+msgstr Controlador d'escalat
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:70
+#, c-format
+msgid No scaling driver available
+msgstr No hi ha un controlador d'escalat disponible
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:81
+msgid Available frequencies:
+msgstr Freqüències disponibles
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:136
+msgid Available governors:
+msgstr Gestors disponibles:
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:159
+msgid Current governor:
+msgstr Gestor actual:
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:194
+msgid CPU Information
+msgstr Informació de la CPU
+
+#: ../panel-plugin/xfce4-cpufreq-overview.c:201
+msgid An overview of all the CPUs in the system
+msgstr Un resum de les CPUs del sistema
+
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:77
 #, c-format
 msgid %d cpu available
-msgstr %d de CPU disponible
+msgid_plural %d cpus available
+msgstr[0] %d CPU disponible
+msgstr[1] %d CPUs disponibles
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:74
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:79
 msgid Frequency: 
 msgstr Freqüència:
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:79
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:86
 msgid Governor: 
 msgstr Controlador:
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:249
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:274
-msgid Could not create widgets !
-msgstr No s'han pogut crear el giny del quadre
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:292
+msgid Your system is not configured correctly to support cpu frequency 
scaling !
+msgstr El vostre sistema no està configurat per tal de suportar la 
modificació/escalat de la freqüència de la CPU!
 
-#: ../panel-plugin/xfce4-cpufreq-plugin.c:271
-msgid Could not initialize linux backend !
-msgstr No s'han pogut iniciar el suport de linux
+#: ../panel-plugin/xfce4-cpufreq-plugin.c:301
+msgid Your system is not supported yet !
+msgstr El vostre sistema no està suportat encara!
 
 #: ../panel-plugin/xfce4-cpufreq-plugin.desktop.in.in.h:1
 msgid CPU Frequency Monitor
@@ -49,3 +129,8 @@ msgstr Monitor de freqüència de la CPU
 msgid Shows the cpu frequency and governours
 msgstr Mostra la 

[Xfce4-commits] libxfce4menu:master fix missing format string in tests.

2011-01-02 Thread Danny Milosavljevic
Updating branch refs/heads/master
 to 85c7226797540218db058652c91ab85eac5b0d81 (commit)
   from 50cfa94cb3a3ce86ee318d6cca6b47da397324e3 (commit)

commit 85c7226797540218db058652c91ab85eac5b0d81
Author: Danny Milosavljevic dan...@xfce.org
Date:   Sun Jan 2 20:55:05 2011 +0100

fix missing format string in tests.

 tests/test-display-menu.c |2 +-
 tests/test-menu-spec.c|2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/test-display-menu.c b/tests/test-display-menu.c
index f361d37..16d2f3a 100644
--- a/tests/test-display-menu.c
+++ b/tests/test-display-menu.c
@@ -408,7 +408,7 @@ main (intargc,
 }
   else
 {
-  g_error (error-message);
+  g_error (%s, error-message);
   exit_code = EXIT_FAILURE;
 }
 
diff --git a/tests/test-menu-spec.c b/tests/test-menu-spec.c
index f5514bd..b979d11 100644
--- a/tests/test-menu-spec.c
+++ b/tests/test-menu-spec.c
@@ -107,7 +107,7 @@ main (intargc,
 }
   else
 {
-  g_error (error-message);
+  g_error (%s, error-message);
   g_error_free (error);
 #ifdef HAVE_STDLIB_H
   exit_code = EXIT_FAILURE;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4menu:master add enum-types (enum value symbols).

2011-01-02 Thread Danny Milosavljevic
Updating branch refs/heads/master
 to 60310e06364f913c0a2bd21b2935689047f175b1 (commit)
   from 85c7226797540218db058652c91ab85eac5b0d81 (commit)

commit 60310e06364f913c0a2bd21b2935689047f175b1
Author: Danny Milosavljevic dan...@xfce.org
Date:   Sun Jan 2 21:08:08 2011 +0100

add enum-types (enum value symbols).

 libxfce4menu/Makefile.am|   45 ++-
 libxfce4menu/libxfce4menu.h |1 +
 2 files changed, 45 insertions(+), 1 deletions(-)

diff --git a/libxfce4menu/Makefile.am b/libxfce4menu/Makefile.am
index 2bf778c..61c04f5 100644
--- a/libxfce4menu/Makefile.am
+++ b/libxfce4menu/Makefile.am
@@ -12,7 +12,12 @@ INCLUDES =   
\
 lib_LTLIBRARIES =  \
libxfce4menu-0.1.la
 
+libxfce4menu_enum_headers = \
+   xfce-menu-layout.h \
+   xfce-menu-monitor.h
+
 libxfce4menu_headers = \
+   libxfce4menu-enum-types.h \
xfce-menu.h \
xfce-menu-element.h \
xfce-menu-separator.h   \
@@ -48,6 +53,10 @@ libxfce4menu_sources =   
\
xfce-menu-monitor.c \
xfce-menu-item.c
 
+libxfce4menu_built_sources = \
+   libxfce4menu-enum-types.c \
+   libxfce4menu-enum-types.h
+   
 libxfce4menuincludedir = $(includedir)/xfce4/libxfce4menu-0.1/libxfce4menu
 
 libxfce4menuinclude_HEADERS =  \
@@ -57,7 +66,8 @@ libxfce4menuinclude_HEADERS = 
\
 
 libxfce4menu_0_1_la_SOURCES =  \
$(libxfce4menu_sources) \
-   $(libxfce4menu_headers)
+   $(libxfce4menu_headers) \
+   $(libxfce4menu_built_sources)
 
 libxfce4menu_0_1_la_CFLAGS =   \
$(GLIB_CFLAGS)  \
@@ -90,3 +100,36 @@ pkgconfig_DATA = libxfce4menu-0.1.pc
 
 # required for gtk-doc
 dist-hook: all
+
+if MAINTAINER_MODE
+CLEANFILES = 
+DISTCLEANFILES = \
+   $(libxfce4menu_built_sources)  
+   
+BUILT_SOURCES = \
+   $(libxfce4menu_built_sources)
+
+libxfce4menu-enum-types.h: stamp-libxfce4menu-enum-types.h
+   @true
+stamp-libxfce4menu-enum-types.h: $(libxfce4menu_enum_headers) Makefile
+   $(AM_V_GEN) ( cd $(srcdir)  glib-mkenums \
+   --fhead #ifndef __LIBXFCE4UI_ENUM_TYPES_H__\n#define 
__LIBXFCE4UI_ENUM_TYPES_H__\n\nG_BEGIN_DECLS\n\n \
+   --fprod /* enumerations from \@filen...@\ */\n\n \
+   --vhead GType @enum_n...@_get_type(void) 
G_GNUC_CONST;\n#define xfce_ty...@enumshort@ (@enum_n...@_get_type())\n\n \
+   --ftail G_END_DECLS\n\n#endif /* !__LIBXFCE4UI_ENUM_TYPES_H__ 
*/ \
+   $(libxfce4menu_enum_headers) ) xgen-leth
+   cmp -s xgen-leth libxfce4menu-enum-types.h || cp xgen-leth 
libxfce4menu-enum-types.h
+   rm -f xgen-leth
+   echo timestamp  $(@F)
+libxfce4menu-enum-types.c: $(libxfce4menu_enum_headers) Makefile
+   $(AM_V_GEN) ( cd $(srcdir)  glib-mkenums \
+   --fhead #include libxfce4menu/libxfce4menu.h\n\n \
+   --fprod /* enumerations from \@filen...@\ */\n\n \
+   --vhead gtyp...@enum_name@_get_type(void)\n{\nstatic GType 
type = 0;\n\nif(!type) {\nstatic const g...@type@Value values[] = 
{\
+   --vprod { @VALUENAME@, \@valuen...@\, 
\@valuen...@\ }, \
+   --vtail { 0, NULL, NULL }\n\t};\n\ttype = 
g...@type@_register_static(\@enumn...@\, values);\n}\n\nreturn 
type;\n}\n\n \
+   --ftail \n#define __LIBXFCE4UI_ENUM_TYPES_C__\n\n \
+   $(libxfce4menu_enum_headers) )  xgen-letc
+   cp xgen-letc libxfce4menu-enum-types.c
+   rm -f xgen-letc
+endif
diff --git a/libxfce4menu/libxfce4menu.h b/libxfce4menu/libxfce4menu.h
index 15c18b3..05758e0 100644
--- a/libxfce4menu/libxfce4menu.h
+++ b/libxfce4menu/libxfce4menu.h
@@ -40,6 +40,7 @@
 #include libxfce4menu/xfce-menu-separator.h
 #include libxfce4menu/xfce-menu.h
 #include libxfce4menu/xfce-menu-monitor.h
+#include libxfce4menu/libxfce4menu-enum-types.h
 
 #define LIBXFCE4MENU_INSIDE_LIBXFCE4MENU_H
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] pyxfce:master add new defs.

2011-01-02 Thread Danny Milosavljevic
Updating branch refs/heads/master
 to b8dcfd800d67de1871b8e568df9081e983c8eac4 (commit)
   from f003847dcad1c2034083bb53386d4c46eae0e1e7 (commit)

commit b8dcfd800d67de1871b8e568df9081e983c8eac4
Author: Danny Milosavljevic dan...@xfce.org
Date:   Sun Jan 2 20:34:54 2011 +0100

add new defs.

 panel/convenience.defs |   23 +++
 panel/hvbox.defs   |   46 +
 panel/image.defs   |   81 +
 panel/libxfce4panel.defs   |8 +
 panel/libxfce4panel_config.defs|   18 ++
 panel/libxfce4panel_enum_types.defs|   13 ++
 panel/{enums.defs = libxfce4panel_enums.defs} |2 +-
 panel/macros.defs  |8 +
 panel/macros_46.defs   |8 +
 panel/plugin.defs  |  224 
 panel/plugin_provider.defs |  164 +
 ui/dialogs.defs|   97 ++
 ui/gdk_extensions.defs |   16 ++
 ui/gtk_extensions.defs |   44 +
 ui/libxfce4ui.defs |8 +
 ui/libxfce4ui_config.defs  |   18 ++
 ui/libxfce4ui_enum_types.defs  |   18 ++
 ui/sm_client.defs  |  191 
 ui/spawn.defs  |   53 ++
 ui/titled_dialog.defs  |   53 ++
 20 files changed, 1092 insertions(+), 1 deletions(-)

diff --git a/panel/convenience.defs b/panel/convenience.defs
new file mode 100644
index 000..2f819e7
--- /dev/null
+++ b/panel/convenience.defs
@@ -0,0 +1,23 @@
+;; -*- scheme -*-
+; object definitions ...
+;; Enumerations and flags ...
+
+
+;; From xfce-panel-convenience.h
+
+(define-function xfce_panel_create_button
+  (c-name xfce_panel_create_button)
+  (return-type GtkWidget*)
+)
+
+(define-function xfce_panel_create_toggle_button
+  (c-name xfce_panel_create_toggle_button)
+  (return-type GtkWidget*)
+)
+
+(define-function xfce_panel_get_channel_name
+  (c-name xfce_panel_get_channel_name)
+  (return-type const-gchar*)
+)
+
+
diff --git a/panel/hvbox.defs b/panel/hvbox.defs
new file mode 100644
index 000..1e3e6e6
--- /dev/null
+++ b/panel/hvbox.defs
@@ -0,0 +1,46 @@
+;; -*- scheme -*-
+; object definitions ...
+(define-object HVBox
+  (in-module Xfce)
+  (parent GtkBox)
+  (c-name XfceHVBox)
+  (gtype-id XFCE_TYPE_HV_BOX)
+)
+
+;; Enumerations and flags ...
+
+
+;; From xfce-hvbox.h
+
+(define-function xfce_hvbox_get_type
+  (c-name xfce_hvbox_get_type)
+  (return-type GType)
+)
+
+(define-function xfce_hvbox_new
+  (c-name xfce_hvbox_new)
+  (is-constructor-of XfceHvbox)
+  (return-type GtkWidget*)
+  (parameters
+'(GtkOrientation orientation)
+'(gboolean homogeneous)
+'(gint spacing)
+  )
+)
+
+(define-method set_orientation
+  (of-object XfceHVBox)
+  (c-name xfce_hvbox_set_orientation)
+  (return-type none)
+  (parameters
+'(GtkOrientation orientation)
+  )
+)
+
+(define-method get_orientation
+  (of-object XfceHVBox)
+  (c-name xfce_hvbox_get_orientation)
+  (return-type GtkOrientation)
+)
+
+
diff --git a/panel/image.defs b/panel/image.defs
new file mode 100644
index 000..47ce250
--- /dev/null
+++ b/panel/image.defs
@@ -0,0 +1,81 @@
+;; -*- scheme -*-
+; object definitions ...
+(define-object PanelImage
+  (in-module Xfce)
+  (parent GtkWidget)
+  (c-name XfcePanelImage)
+  (gtype-id XFCE_TYPE_PANEL_IMAGE)
+)
+
+;; Enumerations and flags ...
+
+
+;; From xfce-panel-image.h
+
+(define-function xfce_panel_image_get_type
+  (c-name xfce_panel_image_get_type)
+  (return-type GType)
+)
+
+(define-function xfce_panel_image_new
+  (c-name xfce_panel_image_new)
+  (is-constructor-of XfcePanelImage)
+  (return-type GtkWidget*)
+)
+
+(define-function xfce_panel_image_new_from_pixbuf
+  (c-name xfce_panel_image_new_from_pixbuf)
+  (return-type GtkWidget*)
+  (parameters
+'(GdkPixbuf* pixbuf)
+  )
+)
+
+(define-function xfce_panel_image_new_from_source
+  (c-name xfce_panel_image_new_from_source)
+  (return-type GtkWidget*)
+  (parameters
+'(const-gchar* source)
+  )
+)
+
+(define-method set_from_pixbuf
+  (of-object XfcePanelImage)
+  (c-name xfce_panel_image_set_from_pixbuf)
+  (return-type none)
+  (parameters
+'(GdkPixbuf* pixbuf)
+  )
+)
+
+(define-method set_from_source
+  (of-object XfcePanelImage)
+  (c-name xfce_panel_image_set_from_source)
+  (return-type none)
+  (parameters
+'(const-gchar* source)
+  )
+)
+
+(define-method set_size
+  (of-object XfcePanelImage)
+  (c-name xfce_panel_image_set_size)
+  (return-type none)
+  (parameters
+'(gint size)
+  )
+)
+
+(define-method get_size
+  (of-object XfcePanelImage)
+  (c-name xfce_panel_image_get_size)
+  (return-type gint)
+)
+
+(define-method clear
+  (of-object XfcePanelImage)
+  (c-name xfce_panel_image_clear)
+  

[Xfce4-commits] pyxfce:master add 'menu' module.

2011-01-02 Thread Danny Milosavljevic
Updating branch refs/heads/master
 to 8e609a1ac637654e4ec4377f8efb824a5fe0c095 (commit)
   from b8dcfd800d67de1871b8e568df9081e983c8eac4 (commit)

commit 8e609a1ac637654e4ec4377f8efb824a5fe0c095
Author: Danny Milosavljevic dan...@xfce.org
Date:   Sun Jan 2 21:13:53 2011 +0100

add 'menu' module.

 Makefile.am|4 +-
 configure.ac   |2 +
 menu/Makefile.am   |  101 ++
 menu/gen   |   36 ++
 .../binding.override = menu/libxfce4menu.override |4 +-
 .../libxfce4menu_config.override   |4 +-
 xfconf/binding.override = menu/menu.override  |4 +-
 ui/ui.py = menu/menu.py   |2 +-
 .../menu_and_rules.override|4 +-
 .../menu_directory.override|4 +-
 .../binding.override = menu/menu_element.override |4 +-
 .../menu_environment.override  |4 +-
 xfconf/binding.override = menu/menu_item.override |4 +-
 .../menu_item_cache.override   |4 +-
 .../menu_item_pool.override|4 +-
 .../errors.override = menu/menu_layout.override   |6 +-
 .../binding.override = menu/menu_monitor.override |4 +-
 xfconf/binding.override = menu/menu_move.override |4 +-
 .../menu_not_rules.override|4 +-
 .../menu_or_rules.override |4 +-
 .../binding.override = menu/menu_rules.override   |4 +-
 .../menu_separator.override|4 +-
 .../menu_standard_rules.override   |4 +-
 menu/menumodule.c  |  141 
 panel/panelmodule.c|2 +-
 25 files changed, 298 insertions(+), 64 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 7b3fd10..29d7729 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -13,8 +13,8 @@ if HAVE_MIGHTY_MOUSE
 SUBDIR_MIGHTY_MOUSE = panel
 endif
 
-SUBDIRS = ui util xfconf $(SUBDIR_MIGHTY_MOUSE)
-DIST_SUBDIRS = ui util xfconf $(SUBDIR_MIGHTY_MOUSE)
+SUBDIRS = ui util xfconf $(SUBDIR_MIGHTY_MOUSE) menu
+DIST_SUBDIRS = ui util xfconf $(SUBDIR_MIGHTY_MOUSE) menu
 
 PLATFORM_VERSION = 4.2
 PLATFORM_WIN32 =
diff --git a/configure.ac b/configure.ac
index 2f93b3c..f8e3a10 100644
--- a/configure.ac
+++ b/configure.ac
@@ -46,6 +46,7 @@ export_dynamic=`(./libtool --config; echo eval echo 
\\$export_dynamic_flag_spec)
 BM_DEPEND([XFCE4_UTIL], [libxfce4util-1.0], [4.1.0])
 BM_DEPEND([XFCE4_XFCONF], [libxfconf-0], [4.6.2])
 BM_DEPEND([XFCE4_UI], [libxfce4ui-1], [4.7.5])
+BM_DEPEND([XFCE4_MENU], [libxfce4menu-0.1], [4.6.2])
 
 dnl new panel
 
@@ -89,5 +90,6 @@ AC_CONFIG_FILES(
   panel/Makefile
   util/Makefile
   xfconf/Makefile
+  menu/Makefile
 )
 AC_OUTPUT
diff --git a/menu/Makefile.am b/menu/Makefile.am
new file mode 100644
index 000..0701ebb
--- /dev/null
+++ b/menu/Makefile.am
@@ -0,0 +1,101 @@
+...@set_make@
+
+PLATFORM_VERSION = 4.2
+
+CODEGEN_PATH = @CODEGEN_PATH@
+
+common_ldflags = -module -avoid-version -export-symbols-regex init_menu
+if PLATFORM_WIN32
+common_ldflags += -no-undefined
+endif
+
+INCLUDES = $(PYTHON_INCLUDES)
+
+pyxfceexecdir = $(pyexecdir)/xfce4
+pyxfceexec_LTLIBRARIES = _menu.la
+pyxfceexec_PYTHON = menu.py
+
+_menu_la_CFLAGS = $(XFCE4_MENU_CFLAGS) $(PYTHON_CFLAGS) $(PYGTK_CFLAGS)
+_menu_la_LDFLAGS = $(common_ldflags)
+_menu_la_LIBADD = $(XFCE4_MENU_LIBS)
+#-export-symbols-regex
+_menu_la_SOURCES = \
+   libxfce4menu_config.c \
+   libxfce4menu.c \
+   menu_and_rules.c \
+   menu_directory.c \
+   menu_element.c \
+   menu_environment.c \
+   menu_item_cache.c \
+   menu_item.c \
+   menu_item_pool.c \
+   menu_layout.c \
+   menu_monitor.c \
+   menu_move.c \
+   menu_not_rules.c \
+   menu_or_rules.c \
+   menu.c \
+   menu_rules.c \
+   menu_separator.c \
+   menu_standard_rules.c \
+   menumodule.c
+
+defsdir = $(pkgdatadir)/$(PLATFORM_VERSION)/defs
+defs_DATA = \
+   libxfce4menu_config.defs \
+   libxfce4menu.defs \
+   menu_and_rules.defs \
+   menu_directory.defs \
+   menu_element.defs \
+   menu_environment.defs \
+   menu_item_cache.defs \
+   menu_item.defs \
+   menu_item_pool.defs \
+   menu_layout.defs \
+   menu_monitor.defs \
+   menu_move.defs \
+   menu_not_rules.defs \
+   menu_or_rules.defs \
+   menu.defs \
+   menu_rules.defs \
+   menu_separator.defs \
+   menu_standard_rules.defs
+
+menu_overrides = \
+   libxfce4menu_config.override \
+   libxfce4menu.override \
+   menu_and_rules.override \
+   menu_directory.override \
+   menu_element.override \
+   menu_environment.override \
+   menu_item_cache.override \
+   menu_item.override \
+   

[Xfce4-commits] pyxfce:master clean up some warnings.

2011-01-02 Thread Danny Milosavljevic
Updating branch refs/heads/master
 to 8b18960868c83d5c948958c7e108b1f2b31ceb9f (commit)
   from 744591da2d5aa1d4f44304f744436aea3e2f521a (commit)

commit 8b18960868c83d5c948958c7e108b1f2b31ceb9f
Author: Danny Milosavljevic dan...@xfce.org
Date:   Sun Jan 2 21:39:44 2011 +0100

clean up some warnings.

 panel/external_plugin.c  |1 -
 panel/xfce-panel-macros-47.h |8 
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/panel/external_plugin.c b/panel/external_plugin.c
index f94bb6d..37d13f2 100644
--- a/panel/external_plugin.c
+++ b/panel/external_plugin.c
@@ -17,7 +17,6 @@ static PyObject *
 register_external_full_constructor(PyGObject *self, PyObject *args, PyObject 
*kwargs)
 {
 static char *kwlist[] = { socket_ID, plugin, NULL };
-GtkOrientation orientation;
 int socket_ID;
 PyGObject *py_plugin = NULL;
 XfcePanelPlugin* plugin = NULL;
diff --git a/panel/xfce-panel-macros-47.h b/panel/xfce-panel-macros-47.h
index 4dbe190..c7db7be 100644
--- a/panel/xfce-panel-macros-47.h
+++ b/panel/xfce-panel-macros-47.h
@@ -375,12 +375,12 @@ G_BEGIN_DECLS
 display-name, argv[PLUGIN_ARGV_DISPLAY_NAME], \
 comment, argv[PLUGIN_ARGV_COMMENT],  \
 arguments, argv + PLUGIN_ARGV_ARGUMENTS, NULL); \
-gtk_container_add (GTK_CONTAINER (plug), xpp); \
+gtk_container_add (GTK_CONTAINER (plug), GTK_WIDGET(xpp)); \
 g_signal_connect_after (G_OBJECT (xpp), realize, \
 G_CALLBACK (_xpp_realize), plug); \
 g_signal_connect_after (G_OBJECT (xpp), destroy, \
 G_CALLBACK (_xpp_quit_main_loop), NULL); \
-gtk_widget_show (xpp); \
+gtk_widget_show (GTK_WIDGET(xpp)); \
 \
 if (*argv[PLUGIN_ARGV_BACKGROUND_IMAGE] != '\0') \
   { \
@@ -427,12 +427,12 @@ G_BEGIN_DECLS
   colormap = gdk_screen_get_rgb_colormap (screen); \
 if (colormap != NULL) \
   gtk_widget_set_colormap (plug, colormap); \
-gtk_container_add (GTK_CONTAINER (plug), xpp); \
+gtk_container_add (GTK_CONTAINER (plug), GTK_WIDGET(xpp)); \
 g_signal_connect_after (G_OBJECT (xpp), realize, \
 G_CALLBACK (_xpp_realize), plug); \
 g_signal_connect_after (G_OBJECT (xpp), destroy, \
 G_CALLBACK (_xpp_quit_main_loop), NULL); \
-gtk_widget_show (xpp); \
+gtk_widget_show (GTK_WIDGET(xpp)); \
 \
 if (0) \
   { \
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master Update copyright

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 13de03810feea18ab8b7da373536db2e6af81b12 (commit)
   from fb6817750168e0fe789b5dcc6407b475175b5406 (commit)

commit 13de03810feea18ab8b7da373536db2e6af81b12
Author: Enrico Tröger enr...@xfce.org
Date:   Sat Jan 1 15:44:09 2011 +0100

Update copyright

 src/backendgvfs.c|2 +-
 src/backendgvfs.h|2 +-
 src/bookmark.c   |2 +-
 src/bookmark.h   |2 +-
 src/bookmarkdialog.c |2 +-
 src/bookmarkdialog.h |2 +-
 src/bookmarkeditdialog.c |2 +-
 src/bookmarkeditdialog.h |2 +-
 src/bookmarkpanel.c  |2 +-
 src/bookmarkpanel.h  |2 +-
 src/browsenetworkpanel.c |2 +-
 src/browsenetworkpanel.h |2 +-
 src/common.c |2 +-
 src/common.h |2 +-
 src/compat.c |2 +-
 src/compat.h |2 +-
 src/main.c   |4 ++--
 src/main.h   |2 +-
 src/menubuttonaction.c   |2 +-
 src/menubuttonaction.h   |2 +-
 src/mountdialog.c|2 +-
 src/mountdialog.h|2 +-
 src/mountoperation.c |2 +-
 src/mountoperation.h |2 +-
 src/preferencesdialog.c  |2 +-
 src/preferencesdialog.h  |2 +-
 src/settings.c   |2 +-
 src/settings.h   |2 +-
 src/singleinstance.c |2 +-
 src/singleinstance.h |2 +-
 src/window.c |6 +++---
 src/window.h |2 +-
 tests/uri_parsing.c  |2 +-
 wscript  |2 +-
 34 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/src/backendgvfs.c b/src/backendgvfs.c
index 50b7398..44b619d 100644
--- a/src/backendgvfs.c
+++ b/src/backendgvfs.c
@@ -1,7 +1,7 @@
 /*
  *  backendgvfs.c
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/backendgvfs.h b/src/backendgvfs.h
index 7badf43..ed5b17e 100644
--- a/src/backendgvfs.h
+++ b/src/backendgvfs.h
@@ -1,7 +1,7 @@
 /*
  *  backendgvfs.h
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/bookmark.c b/src/bookmark.c
index e552f91..73cb2f2 100644
--- a/src/bookmark.c
+++ b/src/bookmark.c
@@ -1,7 +1,7 @@
 /*
  *  bookmark.c
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/bookmark.h b/src/bookmark.h
index 89c8064..a9e3dc0 100644
--- a/src/bookmark.h
+++ b/src/bookmark.h
@@ -1,7 +1,7 @@
 /*
  *  bookmark.h
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/bookmarkdialog.c b/src/bookmarkdialog.c
index 3fb74df..c283cc5 100644
--- a/src/bookmarkdialog.c
+++ b/src/bookmarkdialog.c
@@ -1,7 +1,7 @@
 /*
  *  bookmarkdialog.c
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/bookmarkdialog.h b/src/bookmarkdialog.h
index cb7ff1f..8e8f01f 100644
--- a/src/bookmarkdialog.h
+++ b/src/bookmarkdialog.h
@@ -1,7 +1,7 @@
 /*
  *  bookmarkdialog.h
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/bookmarkeditdialog.c b/src/bookmarkeditdialog.c
index f8ae36d..0cbcd80 100644
--- a/src/bookmarkeditdialog.c
+++ b/src/bookmarkeditdialog.c
@@ -1,7 +1,7 @@
 /*
  *  bookmarkeditdialog.c
  *
- *  Copyright 2008-2010 Enrico Tröger enrico(at)xfce(dot)org
+ *  Copyright 2008-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/src/bookmarkeditdialog.h b/src/bookmarkeditdialog.h
index 003c714..72e2122 100644

[Xfce4-commits] gigolo:master Do not set the colour when no colour is explicitly selected

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 969b716a358a8fdf70554572cda5a1b4e97b3886 (commit)
   from 626550456eae93cf97626d36ccd9d41d9236174c (commit)

commit 969b716a358a8fdf70554572cda5a1b4e97b3886
Author: Enrico Tröger enr...@xfce.org
Date:   Fri Dec 31 01:29:37 2010 +0100

Do not set the colour when no colour is explicitly selected

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

diff --git a/src/bookmarkeditdialog.c b/src/bookmarkeditdialog.c
index 72cfe4b..f8ae36d 100644
--- a/src/bookmarkeditdialog.c
+++ b/src/bookmarkeditdialog.c
@@ -84,6 +84,7 @@ struct _GigoloBookmarkEditDialogPrivate
 
GtkWidget *color_label;
GtkWidget *color_chooser;
+   gboolean   color_set;
 
GigoloBookmark *bookmark_init;
GigoloBookmark *bookmark_update;
@@ -759,6 +760,10 @@ static void update_bookmark_color(GigoloBookmarkEditDialog 
*dialog)
 
priv = GIGOLO_BOOKMARK_EDIT_DIALOG_GET_PRIVATE(dialog);
 
+   if (! priv-color_set)
+   /* if no colour has been chosen by the user, don't set the 
default colour (black) */
+   return;
+
gtk_color_button_get_color(GTK_COLOR_BUTTON(priv-color_chooser), 
color);
color_string = gdk_color_to_string(color);
gigolo_bookmark_set_color(priv-bookmark_update, color_string);
@@ -961,6 +966,15 @@ static void entry_activate_cb(G_GNUC_UNUSED GtkEditable 
*editable, GigoloBookmar
 }
 
 
+static void color_chooser_set_cb(G_GNUC_UNUSED GtkColorButton *widget,
+
GigoloBookmarkEditDialog *dialog)
+{
+   GigoloBookmarkEditDialogPrivate *priv = 
GIGOLO_BOOKMARK_EDIT_DIALOG_GET_PRIVATE(dialog);
+
+   priv-color_set = TRUE;
+}
+
+
 static void gigolo_bookmark_edit_dialog_init(GigoloBookmarkEditDialog *dialog)
 {
GtkWidget *label;
@@ -1009,7 +1023,9 @@ static void 
gigolo_bookmark_edit_dialog_init(GigoloBookmarkEditDialog *dialog)
gtk_misc_set_alignment(GTK_MISC(priv-color_label), 0.0, 0.5);
gtk_table_attach(GTK_TABLE(table), priv-color_label, 0, 1, 1, 2, 
GTK_FILL, GTK_FILL, 0, 0);
 
+   priv-color_set = FALSE;
priv-color_chooser = gtk_color_button_new();
+   g_signal_connect(priv-color_chooser, color-set, 
G_CALLBACK(color_chooser_set_cb), dialog);
gtk_label_set_mnemonic_widget(GTK_LABEL(priv-color_label), 
priv-color_chooser);
gtk_table_attach(GTK_TABLE(table), priv-color_chooser,
1, 2, 1, 2, GTK_FILL | GTK_EXPAND, GTK_FILL, 0, 0);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master allow editing bookmarks from the main window popup menu

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 626550456eae93cf97626d36ccd9d41d9236174c (commit)
   from 065f3a6fd1b2d616abe4965cb0387769dc9c8dd0 (commit)

commit 626550456eae93cf97626d36ccd9d41d9236174c
Author: Enrico Tröger enr...@xfce.org
Date:   Fri Dec 31 01:15:14 2010 +0100

allow editing bookmarks from the main window popup menu

 src/window.c |   36 ++--
 1 files changed, 30 insertions(+), 6 deletions(-)

diff --git a/src/window.c b/src/window.c
index d69f924..9436021 100644
--- a/src/window.c
+++ b/src/window.c
@@ -606,6 +606,16 @@ static gboolean iter_is_bookmark(GigoloWindow *window, 
GtkTreeModel *model, GtkT
 }
 
 
+static void update_create_edit_bookmark_action_label(GtkAction *action, 
gboolean is_bookmark)
+{
+   gtk_action_set_sensitive(action, TRUE);
+   if (is_bookmark)
+   gtk_action_set_label(action, _(Edit _Bookmark));
+   else
+   gtk_action_set_label(action, _(Create _Bookmark));
+}
+
+
 static void update_sensitive_buttons(GigoloWindow *window, GtkTreeModel 
*model, GtkTreeIter *iter)
 {
GigoloWindowPrivate *priv = GIGOLO_WINDOW_GET_PRIVATE(window);
@@ -619,7 +629,7 @@ static void update_sensitive_buttons(GigoloWindow *window, 
GtkTreeModel *model,
 
gtk_action_set_sensitive(priv-action_connect, (ref_type != 
GIGOLO_WINDOW_REF_TYPE_MOUNT));
gtk_action_set_sensitive(priv-action_disconnect, (ref_type == 
GIGOLO_WINDOW_REF_TYPE_MOUNT));
-   gtk_action_set_sensitive(priv-action_bookmark_create, ! 
is_bookmark);
+   
update_create_edit_bookmark_action_label(priv-action_bookmark_create, 
is_bookmark);
gtk_action_set_sensitive(priv-action_open, 
gigolo_settings_has_file_manager(priv-settings));
gtk_action_set_sensitive(priv-action_copyuri, (ref_type == 
GIGOLO_WINDOW_REF_TYPE_MOUNT));
}
@@ -871,16 +881,17 @@ static void action_create_bookmark_cb(G_GNUC_UNUSED 
GtkAction *button, GigoloWin
if (gigolo_backend_gvfs_is_mount(mnt))
{
gchar *uri, *name;
+   GigoloBookmark *bm;
+   GtkWidget *edit_dialog;
 
gigolo_backend_gvfs_get_name_and_uri_from_mount(mnt, 
name, uri);
 
-   if (gigolo_settings_get_bookmark_by_uri(priv-settings, 
uri) == NULL)
+   bm = 
gigolo_settings_get_bookmark_by_uri(priv-settings, uri);
+   if (bm == NULL)
{
-   GigoloBookmark *bm = 
gigolo_bookmark_new_from_uri(name, uri);
+   bm = gigolo_bookmark_new_from_uri(name, uri);
if (gigolo_bookmark_is_valid(bm))
{
-   GtkWidget *edit_dialog;
-
/* show the bookmark edit dialog and 
add the bookmark only if it was
 * not cancelled */
edit_dialog = 
gigolo_bookmark_edit_dialog_new_with_bookmark(
@@ -901,8 +912,21 @@ static void action_create_bookmark_cb(G_GNUC_UNUSED 
GtkAction *button, GigoloWin
g_object_unref(bm);
}
else
-   verbose(Bookmark for %s already exists, uri);
+   {
+   /* bookmark exists */
+   edit_dialog = 
gigolo_bookmark_edit_dialog_new_with_bookmark(
+   window, GIGOLO_BE_MODE_EDIT, bm);
+   if (gigolo_bookmark_edit_dialog_run(
+   
GIGOLO_BOOKMARK_EDIT_DIALOG(edit_dialog)) == GTK_RESPONSE_OK)
+   {
+   /* this fills the values of the dialog 
into 'bm' */
+   g_object_set(edit_dialog, 
bookmark-update, bm, NULL);
 
+   gigolo_window_update_bookmarks(window);
+   gigolo_settings_write(priv-settings, 
GIGOLO_SETTINGS_BOOKMARKS);
+   }
+   gtk_widget_destroy(edit_dialog);
+   }
g_free(uri);
g_free(name);
}
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master Display the bookmark colours in the Bookmark side panel as well

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to fb6817750168e0fe789b5dcc6407b475175b5406 (commit)
   from 969b716a358a8fdf70554572cda5a1b4e97b3886 (commit)

commit fb6817750168e0fe789b5dcc6407b475175b5406
Author: Enrico Tröger enr...@xfce.org
Date:   Fri Dec 31 01:34:15 2010 +0100

Display the bookmark colours in the Bookmark side panel as well

 src/bookmarkpanel.c |8 ++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/bookmarkpanel.c b/src/bookmarkpanel.c
index e70706f..7b8aa2f 100644
--- a/src/bookmarkpanel.c
+++ b/src/bookmarkpanel.c
@@ -41,6 +41,7 @@ typedef struct _GigoloBookmarkPanelPrivate
GigoloBookmarkPanelPrivate;
 enum
 {
GIGOLO_BOOKMARK_PANEL_COL_NAME,
+   GIGOLO_BOOKMARK_PANEL_COL_COLOR,
GIGOLO_BOOKMARK_PANEL_COL_REF,
GIGOLO_BOOKMARK_PANEL_N_COLUMNS
 };
@@ -98,6 +99,7 @@ static void update_store(GigoloBookmarkPanel *panel, 
GigoloSettings *settings)
 
gtk_list_store_insert_with_values(priv-store, NULL, -1,
GIGOLO_BOOKMARK_PANEL_COL_NAME, 
gigolo_bookmark_get_name(bm),
+   GIGOLO_BOOKMARK_PANEL_COL_COLOR, 
gigolo_bookmark_get_color(bm),
GIGOLO_BOOKMARK_PANEL_COL_REF, bm,
 -1);
}
@@ -209,7 +211,8 @@ static void tree_prepare(GigoloBookmarkPanel *panel)
GigoloBookmarkPanelPrivate *priv = 
GIGOLO_BOOKMARK_PANEL_GET_PRIVATE(panel);
 
tree = gtk_tree_view_new();
-   store = gtk_list_store_new(GIGOLO_BOOKMARK_PANEL_N_COLUMNS, 
G_TYPE_STRING, G_TYPE_POINTER);
+   store = gtk_list_store_new(GIGOLO_BOOKMARK_PANEL_N_COLUMNS,
+   G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER);
 
 column = gtk_tree_view_column_new();
 
@@ -217,7 +220,8 @@ static void tree_prepare(GigoloBookmarkPanel *panel)
gtk_tree_view_set_enable_search(GTK_TREE_VIEW(tree), FALSE);
gtk_tree_view_column_pack_start(column, text_renderer, TRUE);
gtk_tree_view_column_set_attributes(column, text_renderer,
-   text, GIGOLO_BOOKMARK_PANEL_COL_NAME, NULL);
+   text, GIGOLO_BOOKMARK_PANEL_COL_NAME,
+   cell-background, GIGOLO_BOOKMARK_PANEL_COL_COLOR, NULL);
 
gtk_tree_view_append_column(GTK_TREE_VIEW(tree), column);
gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(tree), FALSE);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master When manually expanding a tilde and no username is set for the connection, fallback to the local username

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 065f3a6fd1b2d616abe4965cb0387769dc9c8dd0 (commit)
   from c65cba3d9498fabb38def3298c834c8fa14c9d49 (commit)

commit 065f3a6fd1b2d616abe4965cb0387769dc9c8dd0
Author: Enrico Tröger enr...@xfce.org
Date:   Fri Dec 31 00:57:34 2010 +0100

When manually expanding a tilde and no username is set for the connection, 
fallback to the local username

 src/bookmark.c |6 +-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/bookmark.c b/src/bookmark.c
index 403d053..e552f91 100644
--- a/src/bookmark.c
+++ b/src/bookmark.c
@@ -441,8 +441,12 @@ gchar *gigolo_bookmark_get_folder_expanded(GigoloBookmark 
*bookmark)
 
folder = GIGOLO_BOOKMARK_GET_PRIVATE(bookmark)-folder;
username = gigolo_bookmark_get_user(bookmark);
-   if (NZV(folder)  username  folder[0] == '~')
+   if (NZV(folder)  folder[0] == '~')
+   {
+   if (! username)
+   username = g_get_user_name();
result = g_strconcat(/home/, username, folder + 1, NULL);
+   }
else
result = g_strdup(folder);
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master Store and display colours for bookmarks

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to c65cba3d9498fabb38def3298c834c8fa14c9d49 (commit)
   from b2686fb283a1a9bcfb8cd3f4732dccbd3ecce7ac (commit)

commit c65cba3d9498fabb38def3298c834c8fa14c9d49
Author: Enrico Tröger enr...@xfce.org
Date:   Fri Dec 31 00:48:44 2010 +0100

Store and display colours for bookmarks

Bookmarks now can have colours which are shown in the bookmarks dialog and 
can be set in the bookmark edit dialog.
This is to easily group and identify bookmarks in a large list easily by 
their colours.

 src/bookmark.c   |   23 
 src/bookmark.h   |3 ++
 src/bookmarkdialog.c |   18 +---
 src/bookmarkeditdialog.c |   51 -
 src/settings.c   |7 +-
 5 files changed, 87 insertions(+), 15 deletions(-)

diff --git a/src/bookmark.c b/src/bookmark.c
index 9df9282..403d053 100644
--- a/src/bookmark.c
+++ b/src/bookmark.c
@@ -43,6 +43,7 @@ struct _GigoloBookmarkPrivate
gchar   *share;
guintport;
gchar   *user;
+   gchar   *color;
gboolean autoconnect;
gboolean should_not_autoconnect;
 
@@ -629,6 +630,28 @@ void gigolo_bookmark_set_domain(GigoloBookmark *bookmark, 
const gchar *domain)
 }
 
 
+const gchar *gigolo_bookmark_get_color(GigoloBookmark *bookmark)
+{
+   g_return_val_if_fail(bookmark != NULL, NULL);
+
+   return GIGOLO_BOOKMARK_GET_PRIVATE(bookmark)-color;
+}
+
+
+void gigolo_bookmark_set_color(GigoloBookmark *bookmark, const gchar *color)
+{
+   GigoloBookmarkPrivate *priv;
+
+   g_return_if_fail(bookmark != NULL);
+   g_return_if_fail(color != NULL);
+
+   priv = GIGOLO_BOOKMARK_GET_PRIVATE(bookmark);
+
+   g_free(priv-color);
+   priv-color = g_strdup(color);
+}
+
+
 gboolean gigolo_bookmark_is_valid(GigoloBookmark *bookmark)
 {
GigoloBookmarkPrivate *priv;
diff --git a/src/bookmark.h b/src/bookmark.h
index 7b82bd9..89c8064 100644
--- a/src/bookmark.h
+++ b/src/bookmark.h
@@ -95,6 +95,9 @@ gboolean  gigolo_bookmark_parse_uri   
(GigoloBookmark *bookmark, const gchar *ur
 
 void   gigolo_bookmark_bookmark_clear  (GigoloBookmark 
*bookmark);
 
+const gchar*   gigolo_bookmark_get_color   (GigoloBookmark 
*bookmark);
+void   gigolo_bookmark_set_color   
(GigoloBookmark *bookmark, const gchar *color);
+
 G_END_DECLS
 
 #endif /* __BOOKMARK_H__ */
diff --git a/src/bookmarkdialog.c b/src/bookmarkdialog.c
index fbfe574..3fb74df 100644
--- a/src/bookmarkdialog.c
+++ b/src/bookmarkdialog.c
@@ -61,6 +61,7 @@ enum
COL_AUTOMOUNT,
COL_USERNAME,
COL_OTHER,
+   COL_COLOR,
COL_BMREF,
N_COLUMNS,
ACTION_ADD,
@@ -119,6 +120,7 @@ static void update_row_in_model(GigoloBookmarkDialog 
*dialog, GtkTreeIter *iter,
COL_AUTOMOUNT, gigolo_bookmark_get_autoconnect(bm),
COL_USERNAME, gigolo_bookmark_get_user(bm),
COL_OTHER, other_text-str,
+   COL_COLOR, gigolo_bookmark_get_color(bm),
COL_BMREF, bm,
-1);
g_string_free(other_text, TRUE);
@@ -298,11 +300,11 @@ static void tree_prepare(GigoloBookmarkDialog *dialog)
priv-tree = gtk_tree_view_new();
priv-store = gtk_list_store_new(N_COLUMNS,
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING,
-   G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER);
+   G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, 
G_TYPE_POINTER);
 
renderer = gtk_cell_renderer_text_new();
column = gtk_tree_view_column_new_with_attributes(
-   _(Name), renderer, text, COL_NAME, NULL);
+   _(Name), renderer, text, COL_NAME, cell-background, 
COL_COLOR, NULL);
gtk_tree_view_column_set_sort_indicator(column, TRUE);
gtk_tree_view_column_set_sort_column_id(column, COL_NAME);
gtk_tree_view_column_set_resizable(GTK_TREE_VIEW_COLUMN(column), TRUE);
@@ -310,7 +312,7 @@ static void tree_prepare(GigoloBookmarkDialog *dialog)
 
renderer = gtk_cell_renderer_text_new();
column = gtk_tree_view_column_new_with_attributes(
-   _(Service Type), renderer, text, COL_SCHEME, NULL);
+   _(Service Type), renderer, text, COL_SCHEME, 
cell-background, COL_COLOR, NULL);
gtk_tree_view_column_set_sort_indicator(column, TRUE);
gtk_tree_view_column_set_sort_column_id(column, COL_SCHEME);
gtk_tree_view_column_set_resizable(GTK_TREE_VIEW_COLUMN(column), TRUE);
@@ -318,7 +320,7 @@ static void tree_prepare(GigoloBookmarkDialog *dialog)
 
renderer = gtk_cell_renderer_text_new();
column = gtk_tree_view_column_new_with_attributes(
-   _(Host), renderer, text, COL_HOST, 

[Xfce4-commits] gigolo:master Update Waf to 1.6.1 and adjust wscript

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to b994dbee7bb659a5f9022893a36f544f52396521 (commit)
   from bc8f76ec117699a57f51df8aac3b6c36559b9ad3 (commit)

commit b994dbee7bb659a5f9022893a36f544f52396521
Author: Enrico Tröger enr...@xfce.org
Date:   Sun Jan 2 14:42:46 2011 +0100

Update Waf to 1.6.1 and adjust wscript

 waf |  Bin 59403 - 76329 bytes
 wscript |  396 ++-
 2 files changed, 188 insertions(+), 208 deletions(-)

diff --git a/waf b/waf
index 29af63d..95ffdf3 100755
Binary files a/waf and b/waf differ
diff --git a/wscript b/wscript
index 3c721ec..b7fa147 100644
--- a/wscript
+++ b/wscript
@@ -20,238 +20,218 @@
 
 
 
-from TaskGen import taskgen, feature
-import Build, Configure, Options, Utils, UnitTest
-import sys, os, shutil
+import os
+from waflib import Logs, Options, Scripting
+from waflib.TaskGen import feature
 
 
 APPNAME = 'gigolo'
 VERSION = '0.4.1'
+LINGUAS_FILE = 'po/LINGUAS'
 
-srcdir = '.'
-blddir = '_build_'
+top = '.'
+out = '_build_'
 
 
-sources = [ 'src/compat.c', 'src/window.c', 'src/bookmark.c', 'src/settings.c',
-   'src/menubuttonaction.c', 'src/mountoperation.c', 
'src/bookmarkdialog.c',
-   'src/bookmarkeditdialog.c', 'src/preferencesdialog.c', 
'src/backendgvfs.c',
-   'src/common.c', 'src/mountdialog.c', 
'src/browsenetworkpanel.c',
-   'src/singleinstance.c', 'src/bookmarkpanel.c' ]
+sources = ['src/compat.c', 'src/window.c', 'src/bookmark.c', 'src/settings.c',
+   'src/menubuttonaction.c', 'src/mountoperation.c', 
'src/bookmarkdialog.c',
+   'src/bookmarkeditdialog.c', 'src/preferencesdialog.c', 
'src/backendgvfs.c',
+   'src/common.c', 'src/mountdialog.c', 'src/browsenetworkpanel.c',
+   'src/singleinstance.c', 'src/bookmarkpanel.c']
 
 
 
 def configure(conf):
-   conf.check_tool('compiler_cc intltool misc gnu_dirs')
+conf.load('compiler_c intltool gnu_dirs waf_unit_test')
 
-   conf.check_cfg(package='gtk+-2.0', atleast_version='2.12.0', 
uselib_store='GTK',
-   mandatory=True, args='--cflags --libs')
-   conf.check_cfg(package='gio-2.0', atleast_version='2.16.0', 
uselib_store='GIO',
-   mandatory=True, args='--cflags --libs')
-   conf.check_cfg(package='x11', uselib_store='X11', mandatory=True, 
args='--libs')
+conf.check_cfg(package='gtk+-2.0', atleast_version='2.12.0', 
uselib_store='GTK',
+mandatory=True, args='--cflags --libs')
+conf.check_cfg(package='gio-2.0', atleast_version='2.16.0', 
uselib_store='GIO',
+mandatory=True, args='--cflags --libs')
+conf.check_cfg(package='x11', uselib_store='X11', mandatory=True, 
args='--libs')
 
-   gtk_version = conf.check_cfg(modversion='gtk+-2.0', uselib_store='GTK')
-   gio_version = conf.check_cfg(modversion='gio-2.0', uselib_store='GIO')
+gtk_version = conf.check_cfg(modversion='gtk+-2.0', uselib_store='GTK')
+gio_version = conf.check_cfg(modversion='gio-2.0', uselib_store='GIO')
 
-   conf.define('GETTEXT_PACKAGE', APPNAME, 1)
-   conf.define('PACKAGE', APPNAME, 1)
-   conf.define('VERSION', VERSION, 1)
+conf.define('GETTEXT_PACKAGE', APPNAME, 1)
+conf.define('PACKAGE', APPNAME, 1)
+conf.define('VERSION', VERSION, 1)
 
-   conf.write_config_header('config.h')
+conf.write_config_header('config.h', remove=False)
 
-   if 'LINGUAS' in os.environ:
-   conf.env['LINGUAS'] = os.environ['LINGUAS']
+if 'LINGUAS' in os.environ:
+conf.env['LINGUAS'] = os.environ['LINGUAS']
 
-   # debug flags
-   if Options.options.debug:
-   conf.env.append_value('CCFLAGS', '-g -O0 -DDEBUG '.split())
+# debug flags
+if conf.options.debug:
+conf.env.append_value('CCFLAGS', '-g -O0 -DDEBUG '.split())
 
-   Utils.pprint('BLUE', 'Summary:')
-   print_message(conf, 'Install Gigolo ' + VERSION + ' in', 
conf.env['PREFIX'])
-   print_message(conf, 'Using GTK version', gtk_version or 'Unknown')
-   print_message(conf, 'Using GIO version', gio_version or 'Unknown')
-   print_message(conf, 'Compiling with debugging support', 
Options.options.debug and 'yes' or 'no')
+Logs.pprint('BLUE', 'Summary:')
+conf.msg('Install Gigolo ' + VERSION + ' in', conf.env['PREFIX'])
+conf.msg('Using GTK version', gtk_version or 'Unknown')
+conf.msg('Using GIO version', gio_version or 'Unknown')
+conf.msg('Compiling with debugging support', conf.options.debug and 'yes' 
or 'no')
 
 
-def set_options(opt):
-   opt.tool_options('compiler_cc')
-   opt.tool_options('intltool')
-   opt.tool_options('gnu_dirs')
+def options(opt):
+opt.load('compiler_cc intltool gnu_dirs waf_unit_test')
 
-   # Features
-   opt.add_option('--enable-debug', action='store_true', default=False,
-   help='enable debug mode [default: No]', dest='debug')
-   

[Xfce4-commits] gigolo:master Add a separator to the Bookmark Edit Dialog

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to bc8f76ec117699a57f51df8aac3b6c36559b9ad3 (commit)
   from 13de03810feea18ab8b7da373536db2e6af81b12 (commit)

commit bc8f76ec117699a57f51df8aac3b6c36559b9ad3
Author: Enrico Tröger enr...@xfce.org
Date:   Sat Jan 1 16:11:49 2011 +0100

Add a separator to the Bookmark Edit Dialog

 src/bookmarkeditdialog.c |   14 ++
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/bookmarkeditdialog.c b/src/bookmarkeditdialog.c
index 0cbcd80..446efaf 100644
--- a/src/bookmarkeditdialog.c
+++ b/src/bookmarkeditdialog.c
@@ -50,6 +50,8 @@ struct _GigoloBookmarkEditDialogPrivate
GtkWidget *type_combo;
GtkWidget *information_label;
 
+   GtkWidget *separator;
+
GtkWidget *name_label;
GtkWidget *name_entry;
 
@@ -542,7 +544,7 @@ static void setup_for_type(GigoloBookmarkEditDialog *dialog)
gtk_container_remove(GTK_CONTAINER(priv-table), 
priv-information_label);
}
 
-   i = 5;
+   i = 6;
table = priv-table;
 
if (meth-scheme == NULL)
@@ -899,6 +901,7 @@ static void 
gigolo_bookmark_edit_dialog_set_property(GObject *object, guint prop
gtk_widget_hide(priv-color_chooser);
gtk_widget_hide(priv-autoconnect_label);
gtk_widget_hide(priv-autoconnect_checkbtn);
+   gtk_widget_hide(priv-separator);
break;
}
}
@@ -1038,15 +1041,18 @@ static void 
gigolo_bookmark_edit_dialog_init(GigoloBookmarkEditDialog *dialog)
gtk_label_set_mnemonic_widget(GTK_LABEL(priv-autoconnect_label), 
priv-autoconnect_checkbtn);
gtk_table_attach(GTK_TABLE(table), priv-autoconnect_checkbtn, 1, 2, 2, 
3, GTK_FILL, GTK_FILL, 0, 0);
 
+   priv-separator = gtk_hseparator_new();
+   gtk_table_attach(GTK_TABLE(table), priv-separator, 0, 2, 3, 4, 
GTK_FILL, GTK_FILL, 0, 0);
+
label = gtk_label_new_with_mnemonic(_(Service t_ype:));
gtk_misc_set_alignment(GTK_MISC(label), 0.0, 0.5);
-   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 3, 4, GTK_FILL, 
GTK_FILL, 0, 0);
+   gtk_table_attach(GTK_TABLE(table), label, 0, 1, 4, 5, GTK_FILL, 
GTK_FILL, 0, 0);
 
priv-type_combo = combo = gtk_combo_box_new();
-   gtk_table_attach(GTK_TABLE(table), combo, 1, 2, 3, 4, GTK_FILL | 
GTK_EXPAND, GTK_FILL, 0, 0);
+   gtk_table_attach(GTK_TABLE(table), combo, 1, 2, 4, 5, GTK_FILL | 
GTK_EXPAND, GTK_FILL, 0, 0);
 
label_tmp = gtk_label_new( );
-   gtk_table_attach(GTK_TABLE(table), label_tmp, 0, 2, 4, 5, GTK_FILL | 
GTK_EXPAND, GTK_FILL, 0, 0);
+   gtk_table_attach(GTK_TABLE(table), label_tmp, 0, 2, 5, 6, GTK_FILL | 
GTK_EXPAND, GTK_FILL, 0, 0);
 
renderer = gtk_cell_renderer_text_new();
gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo), renderer, TRUE);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mailwatch-plugin:master l10n: Updated Portuguese (pt) translation to 100%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to a155e62b7a116a46ef6e21f36b78fe0f98d21f25 (commit)
   from 131059588edbbb8c53922197b7b04bac7ea5a62f (commit)

commit a155e62b7a116a46ef6e21f36b78fe0f98d21f25
Author: Nuno Miguel nu...@netcabo.pt
Date:   Mon Jan 3 00:35:14 2011 +0100

l10n: Updated Portuguese (pt) translation to 100%

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

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

 po/pt.po |   31 ---
 1 files changed, 12 insertions(+), 19 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 5b9b61c..8e19cb5 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the
 # xfce4-mailwatch-plugin package.
 # Nuno Miguel nu...@netcabo.pt, 2007, 2008, 2009.
-# 
+#
 msgid 
 msgstr 
 Project-Id-Version: xfce4-mailwatch-plugin 1.1.0svn\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-15 22:43-0700\n
-PO-Revision-Date: 2009-08-17 23:41+0100\n
-Last-Translator: \n
+PO-Revision-Date: 2011-01-02 23:30+0100\n
+Last-Translator: Nuno Miguel nu...@netcabo.pt\n
 Language-Team: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -237,7 +237,7 @@ msgstr O \plug-in\ Mboxr pode vigiar as novas mensagens 
numa caixa de correio
 #: ../libmailwatch-core/mailwatch-mailbox-mh.c:241
 #, c-format
 msgid Malformed line %s in %s ignored.
-msgstr Ignorada a inha inválida %s em %s.
+msgstr Ignorada a linha inválida %s em %s.
 
 #: ../libmailwatch-core/mailwatch-mailbox-mh.c:581
 msgid 
@@ -339,15 +339,17 @@ msgstr A memória não tem tamanho suficiente para tratar 
toda a linha (%
 msgid xfce4-mailwatch-plugin: Unable to initialise GThread support.  This is 
likely a problem with your GLib install.
 msgstr xfce4-mailwatch-plugin: Incapaz de iniciar o suporte GThread. 
Provavelmente existe um problema com a sua instalação da GLib.
 
-#: ../libmailwatch-core/mailwatch.c:341 ../libmailwatch-core/mailwatch.c:342
+#: ../libmailwatch-core/mailwatch.c:341
+#: ../libmailwatch-core/mailwatch.c:342
 #, c-format
 msgid Unable to write config file '%s'
-msgstr Incapaz de escrever no ficheiro de configuração \%s\
+msgstr Incapaz de escrever no ficheiro de configuração '%s'
 
-#: ../libmailwatch-core/mailwatch.c:406 ../libmailwatch-core/mailwatch.c:408
+#: ../libmailwatch-core/mailwatch.c:406
+#: ../libmailwatch-core/mailwatch.c:408
 #, c-format
 msgid Unable to set permissions on config file '%s'.  If this file contains 
passwords or other sensitive information, it may be readable by others on your 
system.
-msgstr Incapaz de definir as permissões no ficheiro de configuração \%s\. 
Se o ficheiro contém senhas ou outras informações privadas, elas poderão ser 
lidas por terceiros.
+msgstr Incapaz de definir as permissões no ficheiro de configuração '%s'. Se 
o ficheiro contém senhas ou outras informações privadas, elas poderão ser lidas 
por terceiros.
 
 #: ../libmailwatch-core/mailwatch.c:628
 msgid This mailbox type does not require any configuration settings.
@@ -423,7 +425,7 @@ msgstr[1] Tem %d novas mensagens:
 #: ../panel-plugin/mailwatch-plugin.c:142
 #, c-format
 msgid tells how many new messages in each mailbox|%d in %s
-msgstr %d em %d
+msgstr %d em %s
 
 #: ../panel-plugin/mailwatch-plugin-4.2.c:251
 #: ../panel-plugin/mailwatch-plugin.c:413
@@ -555,33 +557,24 @@ msgstr Verificar correio de várias caixas de correio
 
 #~ msgid Unable to set socket to non-blocking mode.  If the connect attempt 
hangs, the panel may hang on close.
 #~ msgstr Não é possível ajustar o socket para o modo não-bloqueante.  Se a 
tentativa de ligação falhar, o painel pode bloquear ao fechar.
-
 #~ msgid Unable to return socket to blocking mode.  Data may not be retreived 
correctly.
 #~ msgstr Não é possível retornar o socket ao modo de bloqueio. As 
informações podem não ser recuperadas correctamente.
-
 #~ msgid The IMAP server returned a response we weren't quite expecting.  
This might be OK, or this plugin might need to be modified to support your mail 
server if the new message counts are incorrect.
 #~ msgstr O servidor de IMAP retornou uma resposta pela qual não estávamos à 
espera. Isto pode não ser nenhum problema, ou este plugin pode precisar ser 
modificado para suportar o seu servidor de e-mail se a contagem de novas 
mensagens estiver incorrecta.
-
 #~ msgid XfceMailwatch: TLS handshake failed: %s
 #~ msgstr Monitor de mensagens do Xfce: aperto de mãos TLS falhou: %s
-
 #~ msgid XfceMailwatch: TLS handshake failed: not compiled with SSL support.
 #~ msgstr Monitor de mensagens do Xfce: aperto de mãos TLS falhou: não 
compilado com suporte a SSL.
-
 #~ msgid A secure connection was requested, but gnutls was not initialised
 #~ msgstr Uma ligação segura foi requisitada, mas gnutls não foi inicializada
-
 #~ msgid About Mailwatch
 #~ msgstr Monitor de mensagens
-
 #~ msgid You have 1 new message:
 #~ msgstr Tem 1 mensagem nova:
-
 #~ msgid You have %d 

[Xfce4-commits] xfce4-dict:master Fix some function signatures and prototypes

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 9f69259fc2bef4786821840ca7a4d2ae847bea81 (commit)
   from 855f375f00791454263e9d0dc96e62b749397953 (commit)

commit 9f69259fc2bef4786821840ca7a4d2ae847bea81
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Mon Jan 3 00:37:18 2011 +0100

Fix some function signatures and prototypes

 lib/common.c |2 +-
 lib/common.h |2 +-
 lib/dictd.c  |2 +-
 panel-plugin/xfce4-dict-plugin.c |2 +-
 src/popup_plugin.h   |2 +-
 src/xfce4-dict.c |2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/common.c b/lib/common.c
index 123babd..2a2967e 100644
--- a/lib/common.c
+++ b/lib/common.c
@@ -573,7 +573,7 @@ void dict_drag_data_received(GtkWidget *widget, 
GdkDragContext *drag_context, gi
 }
 
 
-DictData *dict_create_dictdata()
+DictData *dict_create_dictdata(void)
 {
DictData *dd = g_new0(DictData, 1);
 
diff --git a/lib/common.h b/lib/common.h
index ce9c66a..673bc1a 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -133,7 +133,7 @@ void dict_search_word(DictData *dd, const gchar *word);
 void dict_drag_data_received(GtkWidget *widget, GdkDragContext *drag_context, 
gint x, gint y,
 GtkSelectionData 
*data, guint info, guint ltime, DictData *dd);
 
-DictData *dict_create_dictdata();
+DictData *dict_create_dictdata(void);
 gboolean dict_start_web_query(DictData *dd, const gchar *word);
 gchar *dict_get_web_query_uri(DictData *dd, const gchar *word);
 gchar *dict_get_clipboard_contents(void);
diff --git a/lib/dictd.c b/lib/dictd.c
index 55312f6..4e16db9 100644
--- a/lib/dictd.c
+++ b/lib/dictd.c
@@ -623,7 +623,7 @@ static gpointer ask_server(DictData *dd)
 }
 
 
-void signal_cb(gint sig)
+static void signal_cb(gint sig)
 {
/* do nothing here and hope we never get called */
 }
diff --git a/panel-plugin/xfce4-dict-plugin.c b/panel-plugin/xfce4-dict-plugin.c
index 2162209..332f6ca 100644
--- a/panel-plugin/xfce4-dict-plugin.c
+++ b/panel-plugin/xfce4-dict-plugin.c
@@ -226,7 +226,7 @@ static gboolean dict_plugin_set_selection(DictPanelData 
*dpd)
 }
 
 
-void dict_plugin_close_button_clicked(GtkWidget *button, DictPanelData *dpd)
+static void dict_plugin_close_button_clicked(GtkWidget *button, DictPanelData 
*dpd)
 {
gtk_widget_hide(dpd-dd-window);
 }
diff --git a/src/popup_plugin.h b/src/popup_plugin.h
index 46d1ad8..0aca132 100644
--- a/src/popup_plugin.h
+++ b/src/popup_plugin.h
@@ -22,6 +22,6 @@
 #define POPUP_PLUGIN_H 1
 
 
-gboolean dict_find_panel_plugin(gboolean focus_panel_entry, const gchar *text);
+gboolean dict_find_panel_plugin(gchar flags, const gchar *text);
 
 #endif
diff --git a/src/xfce4-dict.c b/src/xfce4-dict.c
index 9d46be8..f39bec6 100644
--- a/src/xfce4-dict.c
+++ b/src/xfce4-dict.c
@@ -76,7 +76,7 @@ static void close_button_clicked(GtkWidget *button, DictData 
*dd)
 }
 
 
-void pref_dialog_activated(GtkMenuItem *menuitem, DictData *dd)
+static void pref_dialog_activated(GtkMenuItem *menuitem, DictData *dd)
 {
GtkWidget *dlg;
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Send the QUIT command always, also in case of errors

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to aef72cd999786bcc19d473bf6e3a97b802574189 (commit)
   from 9f69259fc2bef4786821840ca7a4d2ae847bea81 (commit)

commit aef72cd999786bcc19d473bf6e3a97b802574189
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Mon Jan 3 00:51:52 2011 +0100

Send the QUIT command always, also in case of errors

 lib/dictd.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/dictd.c b/lib/dictd.c
index 4e16db9..a9de054 100644
--- a/lib/dictd.c
+++ b/lib/dictd.c
@@ -610,8 +610,8 @@ static gpointer ask_server(DictData *dd)
dd-dictionary[i] = ' ';
 
dd-query_buffer = get_answer(dd, fd);
-   send_command(fd, QUIT);
}
+   send_command(fd, QUIT);
close(fd);
 
dd-query_is_running = FALSE;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Make the code more readable

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 6aa6ae683341c307f8497587d3570d91f12a24ad (commit)
   from aef72cd999786bcc19d473bf6e3a97b802574189 (commit)

commit 6aa6ae683341c307f8497587d3570d91f12a24ad
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Mon Jan 3 00:53:16 2011 +0100

Make the code more readable

 lib/dictd.c |7 +--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/lib/dictd.c b/lib/dictd.c
index a9de054..8a52686 100644
--- a/lib/dictd.c
+++ b/lib/dictd.c
@@ -584,6 +584,7 @@ static gpointer ask_server(DictData *dd)
 {
gint fd, i;
static gchar cmd[BUF_SIZE];
+   gchar *tmp_buf;
 
if ((fd = open_socket(dd-server, dd-port)) == -1)
{
@@ -595,12 +596,14 @@ static gpointer ask_server(DictData *dd)
dd-query_is_running = TRUE;
dd-query_status = NO_CONNECTION;
 
-   g_free(get_answer(dd, fd));
+   tmp_buf = get_answer(dd, fd);
+   g_free(tmp_buf);
if (dd-query_status == NO_ERROR)
{
/* take only the first part of the dictionary string, so let 
the string end at the space */
i = 0;
-   while (dd-dictionary[i] != ' ') i++;
+   while (dd-dictionary[i] != ' ')
+   i++;
dd-dictionary[i] = '\0';
 
g_snprintf(cmd, BUF_SIZE, DEFINE %s \%s\, dd-dictionary, 
dd-searched_word);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-dict:master Refactor get_answer a bit to make it more flexible and ensure to read the server's answer after quitting the session.

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 614f909f006f0e4a2c508ee2c2a7c66281140fd0 (commit)
   from 6aa6ae683341c307f8497587d3570d91f12a24ad (commit)

commit 614f909f006f0e4a2c508ee2c2a7c66281140fd0
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Mon Jan 3 01:09:57 2011 +0100

Refactor get_answer a bit to make it more flexible and ensure to read the 
server's answer after quitting the session.

This should fix connection resets on server-side, we closed the connection 
too early.
While at it, fix some typos.

 lib/dictd.c |   73 +-
 1 files changed, 46 insertions(+), 27 deletions(-)

diff --git a/lib/dictd.c b/lib/dictd.c
index 8a52686..9929812 100644
--- a/lib/dictd.c
+++ b/lib/dictd.c
@@ -397,7 +397,7 @@ static gboolean process_server_response(DictData *dd)
 
if (! NZV(dd-query_buffer))
{
-   dict_gui_status_add(dd, _(Unknown error while quering the 
server.));
+   dict_gui_status_add(dd, _(Unknown error while querying the 
server.));
g_free(dd-query_buffer);
return FALSE;
}
@@ -453,7 +453,7 @@ static gboolean process_server_response(DictData *dd)
}
else if (strncmp(150, answer, 3) != 0  dd-query_status != 
NOTHING_FOUND)
{
-   dict_gui_status_add(dd, _(Unknown error while quering the 
server.));
+   dict_gui_status_add(dd, _(Unknown error while querying the 
server.));
g_free(dd-query_buffer);
return FALSE;
}
@@ -494,14 +494,18 @@ static gboolean process_server_response(DictData *dd)
 }
 
 
-static gchar *get_answer(DictData *dd, gint fd)
+static gint get_answer(gint fd, gchar **buffer)
 {
gboolean fol = TRUE;
gboolean sol = FALSE;
gboolean tol = FALSE;
-   GString *str = g_string_sized_new(100);
+   GString *str;
gchar c;
gchar ec[3];
+   gint query_status;
+
+   if (buffer != NULL)
+   str = g_string_sized_new(100);
 
alarm(10); /* abort after 10 seconds, there should went wrong something 
*/
while (read(fd, c, 1)  0)
@@ -529,7 +533,9 @@ static gchar *get_answer(DictData *dd, gint fd)
tol = FALSE;
}
 
-   g_string_append_c(str, c);
+   if (buffer != NULL)
+   g_string_append_c(str, c);
+
if (tol)
{
if (strncmp(ec, 250, 3) == 0 ||   /* ok */
@@ -538,45 +544,50 @@ static gchar *get_answer(DictData *dd, gint fd)
{
break;
}
-   else if (strncmp(ec, 220, 3) == 0) /* server ready */
+   else if (strncmp(ec, 220, 3) == 0 ||  /* server ready 
*/
+strncmp(ec, 221, 3) == 0)/* good 
bye */
{
-   dd-query_status = NO_ERROR;
+   query_status = NO_ERROR;
break;
}
else if (strncmp(ec, 420, 3) == 0 ||
 strncmp(ec, 421, 3) == 0) /* server 
not ready (server down or shutdown) */
{
-   dd-query_status = SERVER_NOT_READY;
+   query_status = SERVER_NOT_READY;
break;
}
else if (strncmp(ec, 500, 3) == 0 ||
 strncmp(ec, 501, 3) == 0) /* bad 
command or parameters */
{
-   dd-query_status = BAD_COMMAND;
+   query_status = BAD_COMMAND;
break;
}
else if (strncmp(ec, 550, 3) == 0) /* invalid 
database */
{
-   dd-query_status = UNKNOWN_DATABASE;
+   query_status = UNKNOWN_DATABASE;
break;
}
else if (strncmp(ec, 552, 3) == 0) /* nothing found */
{
-   dd-query_status = NOTHING_FOUND;
+   query_status = NOTHING_FOUND;
break;
}
else if (strncmp(ec, 554, 3) == 0) /* no databases 
present */
{
-   dd-query_status = NO_DATABASES;
+   query_status = NO_DATABASES;
break;
}
}
}
alarm(0);
 
-   g_string_append_c(str, '\0');
+   if (buffer != NULL)
+   {
+   

[Xfce4-commits] xfce4-dict:master Update copyright

2011-01-02 Thread Enrico Tröger
Updating branch refs/heads/master
 to 855f375f00791454263e9d0dc96e62b749397953 (commit)
   from 445dac0e8ea1811add59c56dee21e84cabf75e13 (commit)

commit 855f375f00791454263e9d0dc96e62b749397953
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Mon Jan 3 00:32:52 2011 +0100

Update copyright

 lib/common.c |2 +-
 lib/common.h |2 +-
 lib/dictd.c  |2 +-
 lib/dictd.h  |2 +-
 lib/gui.c|4 ++--
 lib/gui.h|2 +-
 lib/libdict.h|2 +-
 lib/prefs.c  |2 +-
 lib/prefs.h  |2 +-
 lib/searchentry.c|2 +-
 lib/searchentry.h|2 +-
 lib/speedreader.c|2 +-
 lib/speedreader.h|2 +-
 lib/spell.c  |2 +-
 lib/spell.h  |2 +-
 lib/wraplabel.c  |2 +-
 lib/wraplabel.h  |2 +-
 panel-plugin/xfce4-dict-plugin.c |2 +-
 src/popup_plugin.c   |2 +-
 src/popup_plugin.h   |2 +-
 src/xfce4-dict.c |4 ++--
 21 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/lib/common.c b/lib/common.c
index 556d3d1..123babd 100644
--- a/lib/common.c
+++ b/lib/common.c
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/lib/common.h b/lib/common.h
index 7123540..ce9c66a 100644
--- a/lib/common.h
+++ b/lib/common.h
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/lib/dictd.c b/lib/dictd.c
index a493895..55312f6 100644
--- a/lib/dictd.c
+++ b/lib/dictd.c
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/lib/dictd.h b/lib/dictd.h
index f636d0f..3f31856 100644
--- a/lib/dictd.h
+++ b/lib/dictd.h
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/lib/gui.c b/lib/gui.c
index 8e19194..70ee1a1 100644
--- a/lib/gui.c
+++ b/lib/gui.c
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -849,7 +849,7 @@ void dict_gui_about_dialog(GtkWidget *widget, DictData *dd)
destroy-with-parent, TRUE,
authors, authors,
comments, _(A client program to query different 
dictionaries.),
-   copyright, _(Copyright \302\251 2006-2010 Enrico Tröger),
+   copyright, _(Copyright \302\251 2006-2011 Enrico Tröger),
website, 
http://goodies.xfce.org/projects/applications/xfce4-dict;,
logo, logo,
translator-credits, _(translator-credits),
diff --git a/lib/gui.h b/lib/gui.h
index c9aeac2..858e51b 100644
--- a/lib/gui.h
+++ b/lib/gui.h
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/lib/libdict.h b/lib/libdict.h
index 7009486..0e7571e 100644
--- a/lib/libdict.h
+++ b/lib/libdict.h
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger enrico(dot)troeger(at)uvena(dot)de
+ *  Copyright 2006-2011 Enrico Tröger enrico(at)xfce(dot)org
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
diff --git a/lib/prefs.c b/lib/prefs.c
index e7ed636..238aed4 100644
--- a/lib/prefs.c
+++ b/lib/prefs.c
@@ -1,6 +1,6 @@
 /*  $Id$
  *
- *  Copyright 2006-2010 Enrico Tröger 

[Xfce4-commits] thunar:master Properly try alternative names when creating links (bug #6867).

2011-01-02 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to a26d885cf4eddb3c22c6e0ad84e313ec0ae7b1dd (commit)
   from 3d7ca539b94d972c36a712f69edf96e636f06e21 (commit)

commit a26d885cf4eddb3c22c6e0ad84e313ec0ae7b1dd
Author: Jannis Pohlmann jan...@xfce.org
Date:   Mon Jan 3 01:40:00 2011 +0100

Properly try alternative names when creating links (bug #6867).

This was a regression compared to the Thunar code based on ThunarVFS.
When creating a symbolic link with a name for which a file already
exists, we need to try alternative names such as link to foo, another
link to foo and 4th link to foo, just like we do when copying files.

This commit hopefully fixes this and also makes the Make link(s)
action in the Edit menu work again.

 NEWS|4 +
 thunar/thunar-io-jobs.c |  196 ++-
 2 files changed, 148 insertions(+), 52 deletions(-)

diff --git a/NEWS b/NEWS
index 8e71ca4..d42d5e5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+1.1.x
+=
+- Properly try alternative names when creating links (bug #6867).
+
 1.1.6
 =
 - Fix unused variable warning when building with GLib  2.20.
diff --git a/thunar/thunar-io-jobs.c b/thunar/thunar-io-jobs.c
index a6a43a8..abb662a 100644
--- a/thunar/thunar-io-jobs.c
+++ b/thunar/thunar-io-jobs.c
@@ -1,6 +1,6 @@
 /* vi:set et ai sw=2 sts=2 ts=2: */
 /*-
- * Copyright (c) 2009 Jannis Pohlmann jan...@xfce.org
+ * Copyright (c) 2009-2011 Jannis Pohlmann jan...@xfce.org
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -28,6 +28,7 @@
 #include thunar/thunar-gio-extensions.h
 #include thunar/thunar-io-scan-directory.h
 #include thunar/thunar-io-jobs.h
+#include thunar/thunar-io-jobs-util.h
 #include thunar/thunar-job.h
 #include thunar/thunar-private.h
 #include thunar/thunar-simple-job.h
@@ -513,21 +514,144 @@ thunar_io_jobs_copy_files (GList *source_file_list,
 
 
 
-static gboolean
-_thunar_io_jobs_link (ThunarJob   *job,
-  GValueArray *param_values,
-  GError **error)
+static GFile *
+_thunar_io_jobs_link_file (ThunarJob *job,
+   GFile *source_file,
+   GFile *target_file,
+   GError   **error)
 {
   ThunarJobResponse response;
   GError   *err = NULL;
-  GList*new_files_list = NULL;
-  GList*source_file_list;
-  GList*sp;
-  GList*target_file_list;
-  GList*tp;
   gchar*base_name;
   gchar*display_name;
   gchar*source_path;
+  gint  n;
+
+  _thunar_return_val_if_fail (THUNAR_IS_JOB (job), NULL);
+  _thunar_return_val_if_fail (G_IS_FILE (source_file), NULL);
+  _thunar_return_val_if_fail (G_IS_FILE (target_file), NULL);
+  _thunar_return_val_if_fail (error == NULL || *error == NULL, NULL);
+
+  /* abort on cancellation */
+  if (exo_job_set_error_if_cancelled (EXO_JOB (job), error))
+return NULL;
+
+  /* try to determine the source path */
+  source_path = g_file_get_path (source_file);
+  if (source_path == NULL)
+{
+  base_name = g_file_get_basename (source_file);
+  display_name = g_filename_display_name (base_name);
+  g_set_error (err, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
+   _(Could not create symbolic link to \%s\ 
+ because it is not a local file), display_name);
+  g_free (display_name);
+  g_free (base_name);
+}
+
+  /* various attempts to create the symbolic link */
+  while (err == NULL)
+{
+  if (!g_file_equal (source_file, target_file))
+{
+  /* try to create the symlink */
+  if (g_file_make_symbolic_link (target_file, source_path, 
+ exo_job_get_cancellable (EXO_JOB 
(job)),
+ err))
+{
+  /* release the source path */
+  g_free (source_path);
+
+  /* return the real target file */
+  return g_object_ref (target_file);
+}
+}
+  else
+{
+  for (n = 1; err == NULL; ++n)
+{
+  GFile *duplicate_file = thunar_io_jobs_util_next_duplicate_file 
(job,
+   
source_file,
+   
FALSE, n,
+   
err);
+
+  if (err == NULL)
+{
+  /* try to create the symlink */
+  if (g_file_make_symbolic_link (duplicate_file, source_path,
+ exo_job_get_cancellable 
(EXO_JOB (job)),
+ 

[Xfce4-commits] ristretto:master l10n: Updated Arabic (ar) translation to 97%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to c18d2f44392ebb6d8aa938b4db07bbfd656f2aea (commit)
   from 9793c5e366cced3857a65065f3e0ac130738ad9b (commit)

commit c18d2f44392ebb6d8aa938b4db07bbfd656f2aea
Author: كريم أولاد الشلحة herr.linu...@gmail.com
Date:   Mon Jan 3 03:13:05 2011 +0100

l10n: Updated Arabic (ar) translation to 97%

New status: 121 messages complete with 0 fuzzies and 3 untranslated.

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

 po/ar.po |  259 --
 1 files changed, 134 insertions(+), 125 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index 4731a3c..a4d3dd2 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,8 +3,8 @@ msgstr 
 Project-Id-Version: xfce\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
 POT-Creation-Date: 2010-11-15 20:25+0100\n
-PO-Revision-Date: 2008-07-15 15:07+0200\n
-Last-Translator: Mohamed Magdy mohame...@gmail.com\n
+PO-Revision-Date: 2011-01-02 18:13-\n
+Last-Translator: كريم أولاد الشلحة herr.linu...@gmail.com\n
 Language-Team: Arabeyes d...@arabeyes.org\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -13,15 +13,15 @@ msgstr 
 
 #: ../src/main.c:59
 msgid Version information
-msgstr 
+msgstr معلومات النسخة
 
 #: ../src/main.c:63
 msgid Start in fullscreen mode
-msgstr 
+msgstr بدء في نمط بدء التشغيل
 
 #: ../src/main.c:67
 msgid Start a slideshow
-msgstr 
+msgstr بدء عرض الشرائح
 
 #: ../src/main.c:94
 #, c-format
@@ -29,332 +29,340 @@ msgid 
 %s: %s\n
 Try %s --help to see a full list of available command line options.\n
 msgstr 
+%s: %s\n
+جرب %s --help لرأية قائمة كاملة بخيارات سطر الأوامر المتوفرة.\n
 
 #. File Menu
 #: ../src/main_window.c:277
 msgid _File
-msgstr 
+msgstr _ملف
 
 #: ../src/main_window.c:278
 msgid _Open
-msgstr 
+msgstr ا_فتح
 
 #: ../src/main_window.c:278
 msgid Open an image
-msgstr 
+msgstr فتح الصورة
 
 #: ../src/main_window.c:279
 msgid Open _Folder
-msgstr 
+msgstr فتح م_جلّد
 
 #: ../src/main_window.c:279
 msgid Open a folder
-msgstr 
+msgstr فتح مجلّد
 
 #: ../src/main_window.c:280
 msgid _Save copy
-msgstr 
+msgstr _حفظ النسخة
 
 #: ../src/main_window.c:280
 msgid Save a copy of the image
-msgstr 
+msgstr حفظ نسخة من الصورة
 
 #: ../src/main_window.c:281
 msgid _Print
-msgstr 
+msgstr _طباعة
 
 #: ../src/main_window.c:281
 msgid Print the image
-msgstr 
+msgstr طباعة الصورة
 
 #: ../src/main_window.c:282
 msgid _Close
-msgstr 
+msgstr أ_غلق
 
 #: ../src/main_window.c:282
 msgid Close this image
-msgstr 
+msgstr أغلق هذه الصورة
 
 #: ../src/main_window.c:283
 msgid _Close All
-msgstr 
+msgstr أغلق ال_كل
 
 #: ../src/main_window.c:283
 msgid Close all images
-msgstr 
+msgstr أغلق كل الصور
 
 #: ../src/main_window.c:284
 msgid _Quit
-msgstr 
+msgstr _خروج
 
 #: ../src/main_window.c:284
 msgid Quit Ristretto
-msgstr 
+msgstr الخروج من Ristretto
 
 #. Edit Menu
 #: ../src/main_window.c:286
 msgid _Edit
-msgstr 
+msgstr _تحرير
 
 #: ../src/main_window.c:287
 msgid _Open with...
-msgstr 
+msgstr فتح _بـ...
 
 #: ../src/main_window.c:288
 msgid _Sorting
-msgstr 
+msgstr ت_صنيف
 
 #: ../src/main_window.c:289
 msgid _Delete
-msgstr 
+msgstr _حذف
 
 #: ../src/main_window.c:290
 msgid _Preferences
-msgstr 
+msgstr ال_تفضيلات
 
 #. View Menu
 #: ../src/main_window.c:292
 msgid _View
-msgstr 
+msgstr _أظهر
 
 #: ../src/main_window.c:293
 msgid _Fullscreen
-msgstr 
+msgstr _ملأ الشاشة
 
 #: ../src/main_window.c:294
 msgid _Leave Fullscreen
-msgstr 
+msgstr _غادر نمط ملء الشاشة
 
 #: ../src/main_window.c:295
 msgid _Set as Wallpaper
-msgstr 
+msgstr _تعيين كخلفية
 
 #. Zoom submenu
 #: ../src/main_window.c:297
 msgid _Zooming
-msgstr 
+msgstr الت_كبير
 
 #: ../src/main_window.c:298
 msgid Zoom _In
-msgstr 
+msgstr قرّب
 
 #: ../src/main_window.c:299
 msgid Zoom _Out
-msgstr 
+msgstr صغّر_
 
 #: ../src/main_window.c:300
 msgid Zoom _Fit
-msgstr 
+msgstr تكب_ير
 
 #: ../src/main_window.c:301
 msgid _Normal Size
-msgstr 
+msgstr _حجم عادي
 
 #. Rotation submenu
 #: ../src/main_window.c:303
 msgid _Rotation
-msgstr 
+msgstr دورا_ن
 
 #: ../src/main_window.c:304
 msgid Rotate _Right
-msgstr 
+msgstr تدوير إلى اليمين
 
 #: ../src/main_window.c:305
 msgid Rotate _Left
-msgstr 
+msgstr تدوير إلى اليسار
 
 #. Go Menu
 #: ../src/main_window.c:307
 msgid _Go
-msgstr 
+msgstr _ذهاب
 
 #: ../src/main_window.c:308
 msgid _Forward
-msgstr 
+msgstr للأ_مام
 
 #: ../src/main_window.c:309
 msgid _Back
-msgstr 
+msgstr لل_خلف
 
 #: ../src/main_window.c:310
 msgid _First
-msgstr 
+msgstr ا_لأول
 
 #: ../src/main_window.c:311
 msgid _Last
-msgstr 
+msgstr الأ_خير
 
 #. Help Menu
 #: ../src/main_window.c:313
 msgid _Help
-msgstr 
+msgstr _مساعدة
 
 #: ../src/main_window.c:315
 msgid _Contents
-msgstr 
+msgstr الم_حتويات
 
 #: ../src/main_window.c:317
 msgid Display ristretto user manual
-msgstr 
+msgstr أظهر دليل المستخدم لـ ristretto
 
 #: ../src/main_window.c:320
 msgid _About
-msgstr 
+msgstr _عنْ
 
 #: ../src/main_window.c:322
 msgid Display information about 

[Xfce4-commits] thunar:master l10n: Updated Arabic (ar) translation to 64%

2011-01-02 Thread Transifex
Updating branch refs/heads/master
 to 005bfd2bc855fd044c8e39cb58a2cea65a98fb99 (commit)
   from a26d885cf4eddb3c22c6e0ad84e313ec0ae7b1dd (commit)

commit 005bfd2bc855fd044c8e39cb58a2cea65a98fb99
Author: كريم أولاد الشلحة herr.linu...@gmail.com
Date:   Mon Jan 3 04:25:33 2011 +0100

l10n: Updated Arabic (ar) translation to 64%

New status: 439 messages complete with 0 fuzzies and 239 untranslated.

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

 po/ar.po |  364 +++---
 1 files changed, 160 insertions(+), 204 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index 200464c..c1d55c2 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -11,7 +11,7 @@ msgstr 
 Project-Id-Version: ar\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2010-12-05 16:18+0100\n
-PO-Revision-Date: 2010-12-27 16:24-\n
+PO-Revision-Date: 2011-01-02 17:53-\n
 Last-Translator: كريم أولاد الشلحة herr.linu...@gmail.com\n
 Language-Team: Arabic d...@arabeyes.org\n
 Language: ar\n
@@ -64,7 +64,7 @@ msgstr سونار: فشل في فتح العرض: %s\n
 #: ../thunar/main.c:157
 #, c-format
 msgid Thunar: %s\n
-msgstr 
+msgstr سونار: %s\n
 
 #: ../thunar/main.c:168
 msgid The Thunar development team. All rights reserved.
@@ -72,12 +72,12 @@ msgstr فريق التطوير سونار. جميع الحقوق محفوظة.
 
 #: ../thunar/main.c:169
 msgid Written by Benedikt Meurer be...@xfce.org.
-msgstr 
+msgstr كتب من طرف Benedikt Meurer be...@xfce.org.
 
 #: ../thunar/main.c:170
 #, c-format
 msgid Please report bugs to %s.
-msgstr 
+msgstr الرجاء الإبلاغ عن الخلل إلى %s.
 
 #: ../thunar/thunar-abstract-icon-view.c:115
 msgid Arran_ge Items
@@ -85,7 +85,7 @@ msgstr 
 
 #: ../thunar/thunar-abstract-icon-view.c:120
 msgid Sort By _Name
-msgstr رتب حسب الإسم
+msgstr رتب _حسب الإسم
 
 #: ../thunar/thunar-abstract-icon-view.c:120
 msgid Keep items sorted by their name
@@ -109,14 +109,13 @@ msgstr 
 
 #: ../thunar/thunar-abstract-icon-view.c:123
 msgid Sort By Modification _Date
-msgstr 
+msgstr الترتيب حسب تاري_خ التحرير
 
 #: ../thunar/thunar-abstract-icon-view.c:123
 msgid Keep items sorted by their modification date
 msgstr رتب العناصر حسب تاريخ التغيير
 
 #: ../thunar/thunar-abstract-icon-view.c:128
-#, fuzzy
 msgid _Ascending
 msgstr _تصاعدي
 
@@ -125,7 +124,6 @@ msgid Sort items in ascending order
 msgstr رتب العناصر بترتيب تصاعدي
 
 #: ../thunar/thunar-abstract-icon-view.c:129
-#, fuzzy
 msgid _Descending
 msgstr _تناقصي
 
@@ -179,40 +177,34 @@ msgid Create New Folder
 msgstr أنشئ مجلد جديد
 
 #: ../thunar/thunar-application.c:1325
-#, fuzzy
 msgid New File
-msgstr مجلد جديد
+msgstr ملف جديد
 
 #: ../thunar/thunar-application.c:1326
-#, fuzzy
 msgid Create New File
-msgstr أنشئ مجلد جديد
+msgstr أنشئ ملف جديد
 
 #. generate a title for the create dialog
 #: ../thunar/thunar-application.c:1384
 #: ../thunar/thunar-standard-view.c:1870
-#, c-format
 msgid Create Document from template \%s\
-msgstr 
+msgstr أنشئ مستند من النموذج \%s\
 
 #: ../thunar/thunar-application.c:1451
 msgid Copying files...
 msgstr نسخ الملفات...
 
 #: ../thunar/thunar-application.c:1487
-#, fuzzy, c-format
 msgid Copying files to \%s\...
-msgstr نسخ الملفات...
+msgstr نسخ الملفات إلى \%s\...
 
 #: ../thunar/thunar-application.c:1533
-#, fuzzy, c-format
 msgid Creating symbolic links in \%s\...
-msgstr تكوين توصيلات رمزية
+msgstr 
 
 #: ../thunar/thunar-application.c:1586
-#, fuzzy, c-format
 msgid Moving files into \%s\...
-msgstr نقل الملفات...
+msgstr نقل النلفات إلى \%s\...
 
 #: ../thunar/thunar-application.c:1677
 #, c-format
@@ -224,17 +216,16 @@ msgstr 
 الحذف \%s\ نهائيا؟
 
 #: ../thunar/thunar-application.c:1682
-#, fuzzy, c-format
 msgid 
 Are you sure that you want to permanently\n
 delete the selected file?
 msgid_plural 
 Are you sure that you want to permanently\n
 delete the %u selected files?
-msgstr[0] هل أنت متأكد من حذف \%s\؟
-msgstr[1] هل أنت متأكد من حذف \%s\؟
-msgstr[2] هل أنت متأكد من حذف \%s\؟
-msgstr[3] هل أنت متأكد من حذف \%s\؟
+msgstr[0] 
+msgstr[1] 
+msgstr[2] 
+msgstr[3] 
 
 #: ../thunar/thunar-application.c:1702
 msgid If you delete a file, it is permanently lost.
@@ -245,9 +236,8 @@ msgid Deleting files...
 msgstr حذف الملفات...
 
 #: ../thunar/thunar-application.c:1747
-#, fuzzy
 msgid Moving files into the trash...
-msgstr نقل الملفات...
+msgstr نقل الملفات إلى المهملات...
 
 #: ../thunar/thunar-application.c:1786
 msgid Creating files...
@@ -269,9 +259,8 @@ msgstr 
 #: ../thunar/thunar-tree-view.c:1145
 #: ../thunar/thunar-window.c:296
 #: ../plugins/thunar-tpa/thunar-tpa.c:177
-#, fuzzy
 msgid _Empty Trash
-msgstr _ملف فارغ
+msgstr ال_مهملات فارغة
 
 #: ../thunar/thunar-application.c:1874
 msgid If you choose to empty the Trash, all items in it will be permanently 
lost. Please note that you can also delete them separately.
@@ -279,23 +268,20 @@ msgstr 
 
 #: ../thunar/thunar-application.c:1891
 msgid Emptying the Trash...
-msgstr 
+msgstr إفراغ المهملات
 
 #: ../thunar/thunar-application.c:1937
-#,