[Xfce4-commits] terminal:master Revert the glade - ui raname.

2009-12-07 Thread Nick Schermer
Updating branch refs/heads/master
 to 91b88ce416635e90562c420b88df8a7d8c065486 (commit)
   from 23e36bf0f047a704f1b8f51ed4f6322a655e5098 (commit)

commit 91b88ce416635e90562c420b88df8a7d8c065486
Author: Nick Schermer n...@xfce.org
Date:   Mon Dec 7 11:44:53 2009 +0100

Revert the glade - ui raname.

It turns out the translatable strings in the ui
file are not picked up by update-po, while it
works fine for .glade files.

 Makefile.am|2 +-
 Terminal.ui = Terminal.glade  |0
 po/POTFILES.in |2 +-
 terminal/terminal-preferences-dialog.c |2 +-
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 6c39c59..5139706 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -49,7 +49,7 @@ man_MANS = Terminal.1
 uidir = $(datadir)/Terminal
 ui_DATA = \
Terminal-toolbars.ui \
-   Terminal.ui
+   Terminal.glade
 
 EXTRA_DIST = \
HACKING \
diff --git a/Terminal.ui b/Terminal.glade
similarity index 100%
rename from Terminal.ui
rename to Terminal.glade
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 3d165be..12dcae6 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -15,5 +15,5 @@ terminal/terminal-widget.c
 terminal/terminal-window.c
 
 Terminal.desktop.in
-Terminal.ui
+Terminal.glade
 Terminal-default-apps.xml.in
diff --git a/terminal/terminal-preferences-dialog.c 
b/terminal/terminal-preferences-dialog.c
index 2944e3d..2664dc7 100644
--- a/terminal/terminal-preferences-dialog.c
+++ b/terminal/terminal-preferences-dialog.c
@@ -112,7 +112,7 @@ terminal_preferences_dialog_init (TerminalPreferencesDialog 
*dialog)
 
   /* lookup the ui file */
   xfce_resource_push_path (XFCE_RESOURCE_DATA, DATADIR);
-  file = xfce_resource_lookup (XFCE_RESOURCE_DATA, Terminal/Terminal.ui);
+  file = xfce_resource_lookup (XFCE_RESOURCE_DATA, Terminal/Terminal.glade);
   xfce_resource_pop_path (XFCE_RESOURCE_DATA);
 
   if (G_UNLIKELY (file == NULL))
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] tumbler:master Add Philip to the authors. Update README.

2009-12-07 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to f4595d8c03cc4ada3b40b24cf337c35385f20a7d (commit)
   from 82716fedd1eaf7312b5f6991d336e3decc2f66a4 (commit)

commit f4595d8c03cc4ada3b40b24cf337c35385f20a7d
Author: Jannis Pohlmann jan...@xfce.org
Date:   Mon Dec 7 12:23:55 2009 +0100

Add Philip to the authors. Update README.

 AUTHORS |1 +
 README  |   94 +++
 2 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index c40ddc1..30070c8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1 +1,2 @@
 Jannis Pohlmann jan...@xfce.org
+Philip Van Hoof phi...@codeminded.be
diff --git a/README b/README
index e69de29..c338921 100644
--- a/README
+++ b/README
@@ -0,0 +1,94 @@
+What is this?
+=
+
+Tumbler is a D-Bus service for applications to request thumbnails for
+various URI schemes and MIME types. It is an implementation of the 
+thumbnail management D-Bus specification described on 
+
+  http://live.gnome.org/ThumbnailerSpec
+
+written in an object-oriented fashion using GLib and GObject. Its 
+modular architecture makes it very flexible and useful in many
+situations. It provides plugin interfaces for extending the URI schemes
+and MIME types for which thumbnails can be generated as well as
+for replacing the storage backend that is used to store the thumbnails
+on disk. Tumbler's functionality can also be extended via specialized
+thumbnailer services implemented in accordance to the thumbnail 
+management D-Bus specification.
+
+
+Required packages
+=
+
+Tumbler depends on the following packages:
+
+  * glib-2.0 = 2.16.0
+  * gio-2.0 = 2.16.0
+  * gthread-2.0 = 2.16.0
+  * dbus-1 = 1.0.0
+  * dbus-glib-1 = 0.72
+
+Tumbler can optionally use the following packages:
+
+  * gdk-pixbuf-2.0 = 2.14.0 (for a pixbuf thumbnailer plugin) 
+  * FreeType 2.x (for a font thumbnailer plugin)
+  * libpng = 1.2.0 (for the Thumbnail Managing Standard storage 
+backend, gdk-pixbuf-2.0 is also required for this)
+
+
+Installation
+
+
+The 'INSTALL' file contains generic installation instructions. 
+
+
+Debugging Support
+=
+
+Tumbler currently supports four different levels of debugging support, 
+which can be setup using the configure flag `--enable-debug' (check the 
+output of `configure --help'):
+
+  `full'  Use this if you want to debug Tumbler to locate a bug. The
+build will most probably be noticably slower. This is also
+recommended for people that want to develop Tumbler stuff.
+
+  `yes'  This is the default for git snapshot builds. It adds all
+kinds of checks to the code, and is therefore likely to run
+slower. Use this if you want to develop for Tumbler (e.g.
+writing Tumbler extensions and such).
+
+  `minimum'  This is the default for release builds, and presents the
+recommended behaviour.
+
+  `no'  Disables all sanity checks. Don't use this unless you know
+exactly what you do.
+
+
+Standards compliance
+
+
+Tumbler supports and implements the following standards/specifications:
+
+  * XDG Base Directory Specification
+http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
+
+  * Thumbnail Managing Standard
+http://jens.triq.net/thumbnail-spec/
+
+  * Thumbnail Management D-Bus Specification
+http://live.gnome.org/ThumbnailerSpec
+
+  * File URI Specification
+http://www.freedesktop.org/wiki/Specifications/file-uri-spec
+
+
+How to report bugs?
+===
+
+Bugs should be reported to the Xfce bug tracking system 
+(http://bugzilla.xfce.org, product Tumbler). You will need to
+create a bugzilla account for yourself first.
+
+Please read the HACKING file for informaiton on where to send
+changes or bugfixes for this package.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] terminal:master Add not about update-po when not compiling with gen doc.

2009-12-07 Thread Nick Schermer
Updating branch refs/heads/master
 to b6a7c89270f0930e8c2131588e7d35e4142c441d (commit)
   from 4fbba4dcc3984c612ed8ffea12ab0e4bd81e4c70 (commit)

commit b6a7c89270f0930e8c2131588e7d35e4142c441d
Author: Nick Schermer n...@xfce.org
Date:   Mon Dec 7 12:28:00 2009 +0100

Add not about update-po when not compiling with gen doc.

 doc/Makefile.am |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/doc/Makefile.am b/doc/Makefile.am
index 0e543ba..5462912 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -81,6 +81,11 @@ dist-check-doc: all
 
 else
 
+update-po:
+   @echo *** You need to compile with --enable-gen-doc in order to 
update-po
+   @echo *** This requires both the xml2po and xsltproc executables
+   @false
+
 html-build.stamp:
@if test ! -d $(srcdir)/html; then \
echo; \
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] tumbler:master Add -Wno-sign-compare to the gtk-doc build.

2009-12-07 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to 2862c9c9275691b05a77c157e920466f0d4db483 (commit)
   from f4595d8c03cc4ada3b40b24cf337c35385f20a7d (commit)

commit 2862c9c9275691b05a77c157e920466f0d4db483
Author: Jannis Pohlmann jan...@xfce.org
Date:   Mon Dec 7 12:33:02 2009 +0100

Add -Wno-sign-compare to the gtk-doc build.

 docs/reference/tumbler/Makefile.am |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/docs/reference/tumbler/Makefile.am 
b/docs/reference/tumbler/Makefile.am
index c6b59a0..7512d41 100644
--- a/docs/reference/tumbler/Makefile.am
+++ b/docs/reference/tumbler/Makefile.am
@@ -65,7 +65,8 @@ INCLUDES =
\
$(GIO_CFLAGS)   \
$(GLIB_CFLAGS)  \
$(GTHREAD_CFLAGS)   \
-   $(PNG_CFLAGS)
+   $(PNG_CFLAGS)   \
+   $(GTK_DOC_EXTRA_CFLAGS)
 
 GTKDOC_LIBS =  \
$(DBUS_LIBS)\
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:master Set the _NET_WM_WINDOW_OPACITY_LOCKED wm hint, so xfwm4 keep us opaque.

2009-12-07 Thread Ali Abdallah
Updating branch refs/heads/master
 to fb4d0ef40e2bd01cabecab1238374fe907748d72 (commit)
   from 231efda9082993dd99b1f2135ef2081d4ec2170a (commit)

commit fb4d0ef40e2bd01cabecab1238374fe907748d72
Author: Ali Abdallah al...@xfce.org
Date:   Mon Dec 7 13:05:30 2009 +0100

Set the _NET_WM_WINDOW_OPACITY_LOCKED wm hint, so xfwm4 keep us opaque.

 src/parole-player.c |   37 +
 1 files changed, 37 insertions(+), 0 deletions(-)

diff --git a/src/parole-player.c b/src/parole-player.c
index 6d5bd73..8157f07 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -30,6 +30,7 @@
 #include X11/XF86keysym.h
 #endif
 
+#include gdk/gdkx.h
 #include gdk/gdkkeysyms.h
 #include gtk/gtk.h
 
@@ -1658,6 +1659,39 @@ parole_player_window_notify_is_active (ParolePlayer 
*player)
 }
 } 
 
+/**
+ * 
+ * Sets the _NET_WM_WINDOW_OPACITY_LOCKED wm hint 
+ * so window manager keep us opaque.
+ * 
+ * NOTE: The widget has to be realized first.
+ **/
+static void
+parole_player_set_wm_opacity_hint (GtkWidget *widget)
+{
+GdkScreen *gdkscreen;
+GdkDisplay *gdkdisplay;
+GdkWindow *gdkwindow;
+Display *xdisplay;
+Atom atom;
+char mode = 1;
+
+gdkscreen = gtk_widget_get_screen (widget);
+gdkdisplay = gdk_screen_get_display (gdkscreen);
+
+xdisplay = GDK_DISPLAY_XDISPLAY (gdkdisplay);
+
+atom = XInternAtom (xdisplay, _NET_WM_WINDOW_OPACITY_LOCKED, FALSE);
+
+gdkwindow = gtk_widget_get_window (widget);
+
+XChangeProperty (xdisplay, GDK_WINDOW_XID (gdkwindow),
+atom, XA_CARDINAL,
+32, PropModeAppend,
+(guchar *) mode, 
+1);
+}
+
 static void
 parole_player_init (ParolePlayer *player)
 {
@@ -1744,6 +1778,7 @@ parole_player_init (ParolePlayer *player)
  G_CALLBACK (parole_player_drag_data_received_cb), player);
 
 player-priv-window = GTK_WIDGET (gtk_builder_get_object (builder, 
main-window));
+   
 player-priv-main_nt = GTK_WIDGET (gtk_builder_get_object (builder, 
main-notebook));
 
 player-priv-play_pause = GTK_WIDGET (gtk_builder_get_object (builder, 
play-pause));
@@ -1785,6 +1820,8 @@ parole_player_init (ParolePlayer *player)
 
 gtk_widget_show_all (player-priv-window);
 
+parole_player_set_wm_opacity_hint (player-priv-window);
+
 gtk_box_pack_start (GTK_BOX (output), 
player-priv-gst,
TRUE, TRUE, 0);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:master Fix wrong assertion in the browser plugin.

2009-12-07 Thread Ali Abdallah
Updating branch refs/heads/master
 to d5ca004977c7590d595d14c2d426119d091cc5cf (commit)
   from fb4d0ef40e2bd01cabecab1238374fe907748d72 (commit)

commit d5ca004977c7590d595d14c2d426119d091cc5cf
Author: Ali Abdallah al...@xfce.org
Date:   Mon Dec 7 13:08:37 2009 +0100

Fix wrong assertion in the browser plugin.

 browser-plugin/media-plugin/parole-plugin-player.c |2 +-
 browser-plugin/plugin.cpp  |   11 ---
 src/parole-player.c|2 ++
 3 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/browser-plugin/media-plugin/parole-plugin-player.c 
b/browser-plugin/media-plugin/parole-plugin-player.c
index f4f94b6..1144880 100644
--- a/browser-plugin/media-plugin/parole-plugin-player.c
+++ b/browser-plugin/media-plugin/parole-plugin-player.c
@@ -572,7 +572,7 @@ parole_plugin_player_error_cb (ParoleGst *gst, const gchar 
*error, ParolePluginP
 player-priv-finished = TRUE;
 parole_screen_saver_uninhibit (player-priv-saver);
 xfce_err (%s, error);
-parole_gst_stop (gst);
+
 }
 
 static void
diff --git a/browser-plugin/plugin.cpp b/browser-plugin/plugin.cpp
index d02cfa2..365af6f 100644
--- a/browser-plugin/plugin.cpp
+++ b/browser-plugin/plugin.cpp
@@ -345,11 +345,8 @@ NPBool CPlugin::isInitialized()
 
 void CPlugin::StopPlayer ()
 {
-g_return_if_fail (proxy != NULL);
-
 if ( player_spawned )
 {
-
if ( player_ready )
{
gint num_tries = 0;
@@ -368,9 +365,9 @@ void CPlugin::StopPlayer ()
 */
if ( error )
{
-#ifdef DEBUG
+#ifdef DEBUG
g_debug (Failed to stop the backend via D-Bus %s, 
error-message);
-#endif
+#endif
if ( g_error_matches (error, DBUS_GERROR, 
DBUS_GERROR_NO_REPLY ) ||
 g_error_matches (error, DBUS_GERROR, 
DBUS_GERROR_SERVICE_UNKNOWN) )
{
@@ -483,8 +480,8 @@ int32_t CPlugin::Write (NPStream * stream, int32_t offset, 
int32_t len, void *bu
 }
 else if ( player_ready  player_playing == FALSE  )
 {
-   SendPlay (stream-url);
-   return len;
+SendPlay (stream-url);
+return len;
 }
 
 return wrotebytes;
diff --git a/src/parole-player.c b/src/parole-player.c
index 8157f07..22ff70e 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -1664,6 +1664,8 @@ parole_player_window_notify_is_active (ParolePlayer 
*player)
  * Sets the _NET_WM_WINDOW_OPACITY_LOCKED wm hint 
  * so window manager keep us opaque.
  * 
+ * Currently it is only supported by xfwm.
+ * 
  * NOTE: The widget has to be realized first.
  **/
 static void
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] tumbler|tumbler-0.1.0 Creating annotated tag tumbler-0.1.0

2009-12-07 Thread Jannis Pohlmann
Updating annotated tag refs/tags/tumbler-0.1.0
 as new annotated tag
 to e5ae6be9972570f5a5836548dda71afcee1d8ba2 (tag)
  tagged by Jannis Pohlmann jan...@xfce.org
 on 2009-12-07 12:08 +

Carles Muñoz Gorriz (1):
  l10n: Initial catalan (ca) translation.

Harald Servat (2):
  l10n: Updates to Catalan (Valencian) (ca) translation
  l10n: Updates to Catalan (Valencian) (ca) translation

Iñigo Varela (2):
  l10n: Updates to Asturian translation
  l10n: Updates to Asturian (ast) translation

Jannis Pohlmann (126):
  Add AUTHORS file.
  Initial import. Nothing useful yet.
  Add tumbler class skeletons and .pot file.
  Implement manager D-Bus interface in TumblerManager.
  Introduce interfaces and classes for built-in thumbnailers.
  Improve TumblerThumbnailer and add TumblerSpecializedThumbnailer.
  Implement thumbnailer management in TumblerRegistry.
  Make the registry thread-safe using a GMutex.
  Implement tumbler_manager_get_supported() based on the registry.
  Use GdkPixbuf to get MIME types for the (optional) pixbuf thumbnailer.
  Add TumblerScheduler and TumblerThresholdScheduler skeletons.
  Implement tumbler_service_start(), add D-Bus bindings for the service.
  Implement tumbler_service_queue() based on TumblerSchedulerRequest.
  Fix last element not being copied in tumbler_thumbnailer_array_copy().
  Implement TumblerNaiveScheduler and add signals to TumblerService.
  Add tumbler utility library, rename the service to tumblerd.
  Add configure options for thumbnail flavors (normal, large, cropped).
  Disable large thumbnails by default.
  Add error domain, TumblerThumbnailFlavor and thumbnail helper functions.
  Implement the built-in pixbuf thumbnailer (doesn't crop yet), fix bugs.
  Add TODO file.
  Add API docs for tumbler (not tumblerd) using GTK-Doc.
  Add more files to .gitignore.
  Implement the first bits of TumblerThresholdScheduler.
  Add TumblerThumbnailInfo and TumblerThumbnailFormat enum.
  Implement tumbler_service_unqueue(), add tumbler_scheduler_unqueue().
  Improve threshold scheduler, thumbnail info and builtin thumbnailer.
  Add TUMBLER_ERROR_NO_THUMBNAILER error code.
  Remove tumbler-thumbnail.h includes.
  Always pass the length along with TumblerThumbnailer arrays.
  Add TumblerCache service and try to start it at startup of tumblerd.
  Add plugin interface for cache and thumbnailer implementations.
  Update API docs a little bit.
  Minor tweaks. Use TUMBLER_ADD_INTERFACE in pixbuf thumbnailer plugin.
  Fix bug in deallocation of provider infos in TumblerProviderFactory.
  Implement Cleanup, Copy, Move and Delete in cache plugin and service.
  Fix service activation and a DBusGConnection refcount bug.
  No thumbnails for thumbnails. Allow Unqueue in the middle of requests.
  Cleanup, remove private structs and use G_DEFINE_TYPE where possible.
  Build plugins after the library.
  Remove deprecated files.
  Add tumbler_thumbnail_save_file() to save thumbnails from source files.
  Add module description file.
  Change module name to 'tumbler', not 'airconfig'. Thanks, Nick.
  Fix two memory leaks. Cleanup indentations.
  Fix two more memory leeks. According to valgrind there are none left.
  Use org.xfce and /org/xfce prefixes instead of freedesktop ones.
  Rename PixbufThumbnailerThumbnailer to PixbufThumbnailer. More renames.
  Implement the font thumbnailer, reusing code from ThunarVFS.
  Merge strings, update translation files.
  Fix typo. The variable is called pixbuf, not font.
  Fix several mistakes and typos, and therewith make distcheck.
  Simplify the ENABLE_FONT_THUMBNAILER conditional.
  Make the pixbuf support all URI schemes supported by GIO.
  Make the font thumbnailer work with all URI schemes supported by GIO.
  Make sure to free the font file data.
  Always add file to the supported URI schemes. Fix compiler warnings.
  Always check for file and add it if necessary. Clearly the better way.
  Fix reference counting leak spotted by Philip Van Hoof.
  Derive TumblerSpecializedThumbnailer from TumblerAbstractThumbnailer.
  Register marshallers for specialized thumbnailer signals.
  Chain constructed up to parent classes. Need to remember this.
  Rename D-Bus service file, add others for the cache and the manager.
  Rework build files. Fix bugs introduced in previous commits.
  Minor changes in the configure script.
  Remove xfce4-dev-tools specific code from the neutral autogen.sh.
  Add GdkPixbuf check to the font thumbnailer, add xdg cache macro.
  Use xdg cache macro. Drop revision versioning. Drop MAINTAINER_MODE.
  Fix typo in the cache service file.
  Small parameter name change in the service dbus XML.
  tumbler_scheduler_get_name() 

[Xfce4-commits] midori:master l10n: Updates to Catalan (Valencian) (ca) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to 4e710f23018c762e76bd25b77a855f870433bdbf (commit)
   from 9c40d3b5ba6d5e02ee4a52a571e149a2869662b6 (commit)

commit 4e710f23018c762e76bd25b77a855f870433bdbf
Author: Harald Servat redcr...@gmail.com
Date:   Mon Dec 7 12:12:13 2009 +

l10n: Updates to Catalan (Valencian) (ca) translation

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

 po/ca.po |  461 +++---
 1 files changed, 232 insertions(+), 229 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 7b41386..377a081 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -9,8 +9,8 @@ msgstr 
 Project-Id-Version: midori\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-29 23:58+0200\n
-PO-Revision-Date: 2009-09-13 19:12+0100\n
-Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
+PO-Revision-Date: 2009-12-07 13:11+0100\n
+Last-Translator: Harald Servat redcr...@gmail.com\n
 Language-Team: Catalan\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -23,8 +23,11 @@ msgstr 
 msgid Lightweight web browser
 msgstr Navegador web lleuger
 
-#: ../data/midori.desktop.in.h:2 ../midori/main.c:1343 ../midori/main.c:1517
-#: ../midori/main.c:1525 ../midori/main.c:1536
+#: ../data/midori.desktop.in.h:2
+#: ../midori/main.c:1343
+#: ../midori/main.c:1517
+#: ../midori/main.c:1525
+#: ../midori/main.c:1536
 #: ../midori/midori-websettings.c:287
 msgid Midori
 msgstr Midori
@@ -43,7 +46,8 @@ msgstr No s'ha pogut carregar la configuració: %s\n
 msgid Value '%s' is invalid for %s
 msgstr El valor «%s» no és vàlid per %s
 
-#: ../midori/main.c:158 ../midori/main.c:238
+#: ../midori/main.c:158
+#: ../midori/main.c:238
 #, c-format
 msgid Invalid configuration value '%s'
 msgstr Valor de configuració «%s» no és vàlid
@@ -54,96 +58,90 @@ msgid Failed to open database: %s\n
 msgstr No s'ha pogut obrir la base de dades: %s\n
 
 #: ../midori/main.c:382
-#, fuzzy, c-format
+#, c-format
 msgid Failed to execute database statement: %s\n
-msgstr No s'ha pogut fer la còpia de seguretat de la base de dades.
+msgstr No s'ha pogut executar la comanda a la base de dades: %s\n
 
 #: ../midori/main.c:436
-#, fuzzy, c-format
+#, c-format
 msgid Failed to remove history item: %s\n
-msgstr s'ha produït un error en pam_set_item()\n
+msgstr No s'ha pogut eliminar un ítem de l'historial:  %s\n
 
 #: ../midori/main.c:460
-#, fuzzy, c-format
+#, c-format
 msgid Failed to clear history: %s\n
-msgstr Ha estat impossible eliminar el valor de la variable DISPLAY!
+msgstr No s'ha pogut netejar l'historial: %s\n
 
-#: ../midori/main.c:483 ../midori/main.c:517 ../midori/main.c:533
-#, fuzzy, c-format
+#: ../midori/main.c:483
+#: ../midori/main.c:517
+#: ../midori/main.c:533
+#, c-format
 msgid Failed to add history item: %s\n
-msgstr Cerca un _element a afegir al calaix:
+msgstr No s'ha pogut afegir un ítem a l'historial: %s\n
 
 #. i18n: Couldn't remove items that are older than n days
 #: ../midori/main.c:712
-#, fuzzy, c-format
+#, c-format
 msgid Failed to remove old history items: %s\n
-msgstr 
-dpkg: %s: avís - s'ha produït un error en esborrar l'antiga còpia de 
-seguretat «%.250s»: %s\n
+msgstr No s'han pogut eliminar ítems antics de l'historial: %s\n
 
 #: ../midori/main.c:741
-#, fuzzy, c-format
+#, c-format
 msgid The configuration couldn't be saved. %s
-msgstr No s'ha pogut desar el text.
+msgstr No s'ha pogut desar la configuració: %s
 
 #: ../midori/main.c:779
 #, c-format
 msgid The search engines couldn't be saved. %s
 msgstr No es pot desar les enginys de cerca. %s
 
-#: ../midori/main.c:798 ../midori/main.c:826 ../midori/main.c:855
+#: ../midori/main.c:798
+#: ../midori/main.c:826
+#: ../midori/main.c:855
 #, c-format
 msgid The bookmarks couldn't be saved. %s
 msgstr No s'han pogut desar les adreces d'interès. %s
 
 #. i18n: Trash, or wastebin, containing closed tabs
-#: ../midori/main.c:878 ../midori/main.c:901
-#, fuzzy, c-format
+#: ../midori/main.c:878
+#: ../midori/main.c:901
+#, c-format
 msgid The trash couldn't be saved. %s
-msgstr No s'ha pogut desar el text.
+msgstr No s'han pogut desar les escombraries. %s
 
 #: ../midori/main.c:974
-#, fuzzy, c-format
+#, c-format
 msgid The session couldn't be saved. %s
-msgstr No s'ha pogut desar el text.
+msgstr No s'ha pogut desar la sessió. %s
 
 #: ../midori/main.c:1101
-msgid 
-Midori seems to have crashed the last time it was opened. If this happened 
-repeatedly, try one of the following options to solve the problem.
+msgid Midori seems to have crashed the last time it was opened. If this 
happened repeatedly, try one of the following options to solve the problem.
 msgstr 
 
 #: ../midori/main.c:1116
-#, fuzzy
 msgid Modify _preferences
-msgstr Modificació de les preferències
+msgstr Modificació de les _preferències
 
 #: ../midori/main.c:1120
-#, fuzzy
 msgid Reset the last _session
-msgstr Importar la ltima sessi
+msgstr Reiniciar la darrera _sessió
 
 #: ../midori/main.c:1125
-#, fuzzy
 

[Xfce4-commits] tumbler:master Update usage of AM_INIT_AUTOMAKE().

2009-12-07 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to 954fb5dc41d9ef8aeacb6e7b58901d98be555df9 (commit)
   from e61f59029ef0763389305b346ad6d27c8acb6cf7 (commit)

commit 954fb5dc41d9ef8aeacb6e7b58901d98be555df9
Author: Jannis Pohlmann jan...@xfce.org
Date:   Mon Dec 7 14:00:07 2009 +0100

Update usage of AM_INIT_AUTOMAKE().

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

diff --git a/configure.ac b/configure.ac
index 08e0110..0ab0a30 100644
--- a/configure.ac
+++ b/configure.ac
@@ -43,7 +43,7 @@ AC_CANONICAL_TARGET()
 dnl ***
 dnl *** Initialize automake ***
 dnl ***
-AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()])
+AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
 AC_CONFIG_MACRO_DIR([m4])
 AC_SUBST([ACLOCAL_AMFLAGS], [$ACLOCAL_FLAGS -I m4])
 AM_CONFIG_HEADER([config.h])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] tumbler:jannis/specialized Deleting branch jannis/specialized

2009-12-07 Thread well, not really
Deleting branch refs/heads/jannis/specialized

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


[Xfce4-commits] xfce4-power-manager:devkit-power Drop a message when polkit auth changed.

2009-12-07 Thread Ali Abdallah
Updating branch refs/heads/devkit-power
 to c51995c35c6ccff06060095a47091987bc42adf2 (commit)
   from a867dcf2324c44bb2ce59c2b391e38ce8fde58df (commit)

commit c51995c35c6ccff06060095a47091987bc42adf2
Author: Ali Abdallah al...@xfce.org
Date:   Mon Dec 7 15:30:22 2009 +0100

Drop a message when polkit auth changed.

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

diff --git a/src/xfpm-dkp.c b/src/xfpm-dkp.c
index 6384b7c..65a3282 100644
--- a/src/xfpm-dkp.c
+++ b/src/xfpm-dkp.c
@@ -1088,6 +1088,7 @@ xfpm_dkp_device_changed_cb (DBusGProxy *proxy, const 
gchar *object_path, XfpmDkp
 static void
 xfpm_dkp_polkit_auth_changed_cb (XfpmDkp *dkp)
 {
+XFPM_DEBUG (Auth configuration changed);
 xfpm_dkp_check_polkit_auth (dkp);
 }
 #endif
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-power-manager:master Fix compilation with panel devel.

2009-12-07 Thread Ali Abdallah
Updating branch refs/heads/master
 to b0ec45860b60e8e991d815b4451cb9a5ac003acb (commit)
   from 454a6d2c3b0217faa7e81dea58958965bc5d8583 (commit)

commit b0ec45860b60e8e991d815b4451cb9a5ac003acb
Author: Ali Abdallah al...@xfce.org
Date:   Mon Dec 7 15:32:06 2009 +0100

Fix compilation with panel devel.

 panel-plugins/brightness/Makefile.am |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/panel-plugins/brightness/Makefile.am 
b/panel-plugins/brightness/Makefile.am
index 5e78044..2fa44af 100644
--- a/panel-plugins/brightness/Makefile.am
+++ b/panel-plugins/brightness/Makefile.am
@@ -14,6 +14,7 @@ xfce4_brightness_plugin_CFLAGS =  \
-DLOCALEDIR=\$(localedir)\\
$(LIBXFCE4PANEL_CFLAGS) \
$(LIBXFCE4UTIL_CFLAGS)  \
+   $(LIBXFCE4GUI_CFLAGS)   \
$(GTK_CFLAGS)   \
$(GLIB_CFLAGS)  \
$(DBUS_GLIB_CFLAGS)
@@ -22,6 +23,7 @@ xfce4_brightness_plugin_LDADD =   \
$(top_builddir)/libxfpm/libxfpmhal.la   \
$(top_builddir)/libxfpm/libxfpmcommon.la\
$(LIBXFCE4PANEL_LIBS)   \
+   $(LIBXFCE4GUI_LIBS) \
$(LIBXFCE4UTIL_LIBS)\
$(GTK_LIBS) \
$(GLIB_LIBS)\
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] tumbler:master l10n: Updates to Japanese (ja) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to 7785ba1a34edb3d2d594bf2e2b498af3e9c56f60 (commit)
   from 954fb5dc41d9ef8aeacb6e7b58901d98be555df9 (commit)

commit 7785ba1a34edb3d2d594bf2e2b498af3e9c56f60
Author: Masato Hashimoto cabezon.hashim...@gmail.com
Date:   Mon Dec 7 14:43:07 2009 +

l10n: Updates to Japanese (ja) translation

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

 po/ja.po |   33 +
 1 files changed, 17 insertions(+), 16 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 33ac974..699a656 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: tumbler 0.0.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-05 12:41+0100\n
-PO-Revision-Date: 2009-10-12 16:20+0900\n
+POT-Creation-Date: 2009-12-07 23:41+0900\n
+PO-Revision-Date: 2009-12-07 23:40+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese\n
 MIME-Version: 1.0\n
@@ -34,25 +34,24 @@ msgid Another generic thumbnailer is already running
 msgstr 他の一般サムネイラが既に動作しています
 
 #: ../tumblerd/tumbler-specialized-thumbnailer.c:461
-#, fuzzy
 msgid Failed to call the specialized thumbnailer: timeout
-msgstr 特殊サムネイラのレジストリへの読み込みに失敗しました: %s
+msgstr 特殊サムネイラの呼び出しに失敗しました: タイムアウト
 
 #: ../tumblerd/tumbler-specialized-thumbnailer.c:470
-#, fuzzy, c-format
+#, c-format
 msgid Failed to call the specialized thumbnailer: %s
-msgstr 特殊サムネイラのレジストリへの読み込みに失敗しました: %s
+msgstr 特殊サムネイラの呼び出しに失敗しました: %s
 
 #: ../tumblerd/tumbler-manager.c:467 ../tumblerd/tumbler-manager.c:873
-#, fuzzy, c-format
+#, c-format
 msgid Failed to load the file \%s\: %s
-msgstr プラグイン \%s\ の読み込みに失敗しました: %s
+msgstr ファイル \%s\ の読み込みに失敗しました: %s
 
 #: ../tumblerd/tumbler-manager.c:485 ../tumblerd/tumbler-manager.c:499
 #: ../tumblerd/tumbler-manager.c:513
 #, c-format
 msgid Malformed section \%s\ in file \%s\: %s
-msgstr 
+msgstr ファイル \%2$s\ のセクション \%1$s\ は不正な形式です: %3$s
 
 #: ../tumblerd/tumbler-manager.c:526
 #, c-format
@@ -60,17 +59,19 @@ msgid 
 Malformed section \%s\ in file \%s\: Mismatch between section name and 
 UriScheme/MimeType
 msgstr 
+ファイル \%2$s\ のセクション \%1$s\ は不正な形式です: セクション名と 
+UriScheme/MimeType が一致しません
 
 #: ../tumblerd/tumbler-manager.c:886 ../tumblerd/tumbler-manager.c:900
 #: ../tumblerd/tumbler-manager.c:914
 #, c-format
 msgid Malformed file \%s\: %s
-msgstr 
+msgstr ファイル \%s\ は不正な形式です: %s
 
 #: ../tumblerd/tumbler-manager.c:940
 #, c-format
 msgid Failed to determine last modified time of \%s\
-msgstr 
+msgstr \%s\ の最終変更日時の決定に失敗しました
 
 #: ../tumblerd/tumbler-manager.c:1849
 #, c-format
@@ -117,17 +118,17 @@ msgstr PNG
 
 #: ../tumbler/tumbler-enum-types.c:71
 msgid RGB Colorspace
-msgstr 
+msgstr RGB 色空間
 
 #: ../tumbler/tumbler-cache-plugin.c:145
-#, fuzzy, c-format
+#, c-format
 msgid Cache plugin \%s\ lacks required symbols
-msgstr プラグイン \%s\ には必要なシンボルが不足しています。
+msgstr キャッシュプラグイン \%s\ に必要なシンボルが不足しています。
 
 #: ../tumbler/tumbler-cache-plugin.c:153
-#, fuzzy, c-format
+#, c-format
 msgid Failed to load the cache plugin \%s\: %s
-msgstr プラグイン \%s\ の読み込みに失敗しました: %s
+msgstr キャッシュプラグイン \%s\ の読み込みに失敗しました: %s
 
 #: ../tumbler/tumbler-file-info.c:296
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master l10n: Updates to Japanese (ja) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to 8c7b5342e7d9142b65d2838492ba8172e332aca7 (commit)
   from 6dea64dad7bd5067c25197db1d7305a5a934fa13 (commit)

commit 8c7b5342e7d9142b65d2838492ba8172e332aca7
Author: Masato Hashimoto cabezon.hashim...@gmail.com
Date:   Mon Dec 7 14:49:17 2009 +

l10n: Updates to Japanese (ja) translation

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

 po/ja.po |  175 -
 1 files changed, 92 insertions(+), 83 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 6df4a69..3c76b10 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: gigolo 0.2.1\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-10-05 23:09+0900\n
-PO-Revision-Date: 2009-10-05 23:10+0900\n
+POT-Creation-Date: 2009-12-07 16:41+0900\n
+PO-Revision-Date: 2009-12-07 16:41+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese\n
 MIME-Version: 1.0\n
@@ -70,7 +70,7 @@ msgid WebDAV (secure)
 msgstr WebDAV (セキュア)
 
 #: ../src/common.c:93
-#: ../src/window.c:1351
+#: ../src/window.c:1352
 msgid Network
 msgstr ネットワーク
 
@@ -108,139 +108,139 @@ msgstr Masato Hashimoto hash...@xfce.org
 msgid Gigolo can use the following protocols provided by GVfs:
 msgstr Gigolo は GVFS により以下のプロトコルを使用することができます:
 
-#: ../src/window.c:670
-#: ../src/bookmarkeditdialog.c:210
-#: ../src/bookmarkeditdialog.c:229
-#: ../src/bookmarkeditdialog.c:242
-#: ../src/bookmarkeditdialog.c:253
-#: ../src/bookmarkeditdialog.c:264
+#: ../src/window.c:671
+#: ../src/bookmarkeditdialog.c:214
+#: ../src/bookmarkeditdialog.c:233
+#: ../src/bookmarkeditdialog.c:246
+#: ../src/bookmarkeditdialog.c:257
+#: ../src/bookmarkeditdialog.c:268
 msgid Error
 msgstr エラー
 
-#: ../src/window.c:1137
+#: ../src/window.c:1138
 msgid _File
 msgstr ファイル(_F)
 
-#: ../src/window.c:1138
+#: ../src/window.c:1139
 msgid _Edit
 msgstr 編集(_E)
 
-#: ../src/window.c:1139
+#: ../src/window.c:1140
 msgid _Actions
 msgstr アクション(_A)
 
-#: ../src/window.c:1140
+#: ../src/window.c:1141
 msgid _View
 msgstr 表示(_V)
 
-#: ../src/window.c:1141
+#: ../src/window.c:1142
 msgid _Help
 msgstr ヘルプ(_H)
 
-#: ../src/window.c:1145
+#: ../src/window.c:1146
 #: ../src/browsenetworkpanel.c:453
 #: ../src/browsenetworkpanel.c:497
 msgid Create _Bookmark
 msgstr ブックマークの作成(_B)
 
-#: ../src/window.c:1147
+#: ../src/window.c:1148
 msgid _Edit Bookmarks
 msgstr ブックマークの編集(_E)
 
-#: ../src/window.c:1148
+#: ../src/window.c:1149
 msgid Open the bookmark manager to add, edit or delete bookmarks
 msgstr ブックマークマネージャを開き、ブックマークの追加、編集、または削除を行います
 
-#: ../src/window.c:1152
+#: ../src/window.c:1153
 msgid Disconnect the selected resource
 msgstr 選択されたリソースとの接続を切ります
 
-#: ../src/window.c:1154
+#: ../src/window.c:1155
 msgid Open the selected resource with a file manager
 msgstr 選択されたリソースをファイルマネージャで開きます
 
-#: ../src/window.c:1155
+#: ../src/window.c:1156
 msgid Copy _URI
 msgstr URI のコピー(_U)
 
-#: ../src/window.c:1156
+#: ../src/window.c:1157
 msgid Quit Gigolo
 msgstr Gigolo を終了します
 
-#: ../src/window.c:1157
+#: ../src/window.c:1158
 msgid Online Help
 msgstr オンラインヘルプ
 
-#: ../src/window.c:1158
+#: ../src/window.c:1159
 msgid Supported Protocols
 msgstr サポートプロトコル
 
-#: ../src/window.c:1164
+#: ../src/window.c:1165
 msgid Side _Panel
 msgstr サイドパネル(_P)
 
-#: ../src/window.c:1166
+#: ../src/window.c:1167
 msgid _Toolbar
 msgstr ツールバー(_T)
 
-#: ../src/window.c:1168
+#: ../src/window.c:1169
 msgid Status _Icon
 msgstr ステータスアイコン(_I)
 
-#: ../src/window.c:1174
+#: ../src/window.c:1175
 msgid View as _Symbols
 msgstr シンボルで表示(_S)
 
-#: ../src/window.c:1175
+#: ../src/window.c:1176
 msgid View as _Detailed List
 msgstr 詳細リストで表示(_D)
 
-#: ../src/window.c:1181
+#: ../src/window.c:1182
 msgid _Bookmarks
 msgstr ブックマーク(_B)
 
-#: ../src/window.c:1181
+#: ../src/window.c:1182
 msgid Choose a bookmark to connect to
 msgstr 接続するブックマークを選択します
 
-#: ../src/window.c:1255
+#: ../src/window.c:1256
 msgid Connected
 msgstr 接続中
 
-#: ../src/window.c:1264
-#: ../src/bookmarkdialog.c:303
+#: ../src/window.c:1265
+#: ../src/bookmarkdialog.c:313
 msgid Service Type
 msgstr サービスタイプ
 
-#: ../src/window.c:1272
-#: ../src/bookmarkdialog.c:295
+#: ../src/window.c:1273
+#: ../src/bookmarkdialog.c:305
 msgid Name
 msgstr 名前
 
-#: ../src/window.c:1343
+#: ../src/window.c:1344
 msgid Bookmarks
 msgstr ブックマーク
 
-#: ../src/window.c:1393
-#: ../src/window.c:1468
+#: ../src/window.c:1394
+#: ../src/window.c:1469
 #: ../gigolo.desktop.in.h:2
 msgid Gigolo
 msgstr Gigolo
 
-#: ../src/settings.c:637
+#: ../src/settings.c:642
 msgid Move it now?
 msgstr 今移動しますか?
 
-#: ../src/settings.c:638
+#: ../src/settings.c:643
 msgid Gigolo needs to move your old configuration directory before starting.
 msgstr Gigolo は起動前に古い設定ディレクトリの移動を必要とします。
 
-#: ../src/settings.c:646
+#: ../src/settings.c:651
 #, c-format
 msgid Your old configuration directory \%s\ could not be moved to \%s\ 
(%s). Please move manually the directory to 

[Xfce4-commits] parole:master l10n: Updates to Japanese (ja) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to f3bbdd9f928e1e2cd892b2e2b3c4b0398a0c6bbe (commit)
   from d5ca004977c7590d595d14c2d426119d091cc5cf (commit)

commit f3bbdd9f928e1e2cd892b2e2b3c4b0398a0c6bbe
Author: Masato Hashimoto cabezon.hashim...@gmail.com
Date:   Mon Dec 7 14:52:53 2009 +

l10n: Updates to Japanese (ja) translation

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

 po/ja.po |   52 +---
 1 files changed, 21 insertions(+), 31 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index fce3881..e105686 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: parole 0.1.90\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-06 19:00+0100\n
-PO-Revision-Date: 2009-10-08 21:31+0900\n
+POT-Creation-Date: 2009-12-07 23:52+0900\n
+PO-Revision-Date: 2009-12-07 23:50+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese xfce-users...@ml.fdiary.net\n
 MIME-Version: 1.0\n
@@ -127,15 +127,15 @@ msgstr 表示(_V)
 
 #: ../data/interfaces/mediachooser.ui.h:1
 msgid Replace playlist with opened files
-msgstr 
+msgstr 開いたファイルでプレイリストを置き換える
 
 #: ../data/interfaces/mediachooser.ui.h:2
 msgid Scan folders recursively
-msgstr 
+msgstr フォルダを再帰的にスキャンする
 
 #: ../data/interfaces/mediachooser.ui.h:3
 msgid Start playing opened files
-msgstr 
+msgstr 開いたファイルを再生する
 
 #: ../data/interfaces/plugins.ui.h:1
 msgid bAuthor:/b
@@ -270,7 +270,7 @@ msgstr 
 
 #: ../src/main.c:175
 msgid Unknown argument 
-msgstr 
+msgstr 不明な引数
 
 #: ../src/main.c:212
 msgid Open a new instance
@@ -278,11 +278,11 @@ msgstr 新しいインスタンスを開く
 
 #: ../src/main.c:213
 msgid Do not load plugins
-msgstr 
+msgstr プラグインをロードしない
 
 #: ../src/main.c:214
 msgid Set Audio-CD/VCD/DVD device path
-msgstr 
+msgstr 音楽 CD/VCD/DVD デバイスパスを指定する
 
 #: ../src/main.c:215
 msgid Play or pause if already playing
@@ -326,7 +326,7 @@ msgstr バージョン情報
 
 #: ../src/main.c:225
 msgid Enabled/Disable XV support
-msgstr 
+msgstr XV サポートを有効/無効にする
 
 #: ../src/main.c:227
 msgid Media to play
@@ -628,7 +628,7 @@ msgstr 不明
 
 #: ../src/parole-plugins-manager.c:412
 msgid No installed plugins found on this system
-msgstr 
+msgstr インストールされているプラグインが見つかりません
 
 #: ../parole/parole-filters.c:64
 msgid Audio
@@ -687,9 +687,8 @@ msgid Read media properties
 msgstr メディアのプロパティを読み込みます
 
 #: ../plugins/properties/stream-properties.desktop.in.h:2
-#, fuzzy
 msgid Stream Properties
-msgstr プロパティ
+msgstr ストリームのプロパティ
 
 #: ../plugins/tray/tray-provider.c:262
 msgid bPlaying:/b
@@ -736,57 +735,48 @@ msgid Tray icon
 msgstr トレイアイコン
 
 #: ../plugins/window-title/window-title.desktop.in.h:1
-#, fuzzy
 msgid Set the main window name to the current playing media name.
-msgstr メインウィンドウ名を再生中のメディア名にします
+msgstr メインウィンドウ名に再生中のメディア名を設定します。
 
 #: ../plugins/window-title/window-title.desktop.in.h:2
-#, fuzzy
 msgid Window Title
 msgstr ウィンドウタイトル
 
 #: ../plugins/power-manager/power-manager.desktop.in.h:1
 msgid Inhibit Power Manager from suspending the machine while playing DVD.
-msgstr 
+msgstr DVD の再生中に電源管理によるサスペンドを抑止します。
 
 #: ../plugins/power-manager/power-manager.desktop.in.h:2
 msgid Power Manager Plugin
-msgstr 
+msgstr 電源管理プラグイン
 
 #: ../browser-plugin/media-plugin/main.c:72
 msgid socket
-msgstr 
+msgstr ソケット
 
 #: ../browser-plugin/media-plugin/main.c:72
 msgid SOCKET ID
-msgstr 
+msgstr SOCKET ID
 
 #: ../browser-plugin/media-plugin/main.c:73
-#, fuzzy
 msgid url to play
-msgstr 再生するメディア
+msgstr 再生する URL
 
 #: ../browser-plugin/media-plugin/main.c:73
 msgid URL
-msgstr 
+msgstr URL
 
 #: ../browser-plugin/media-plugin/parole-plugin-player.c:138
 msgid Leave fullscreen
-msgstr 
+msgstr 元に戻す
 
 #: ../browser-plugin/media-plugin/parole-plugin-player.c:143
 msgid Fullscreen
-msgstr 
+msgstr 全画面化
 
 #.
 #. * Copy url
 #.
 #: ../browser-plugin/media-plugin/parole-plugin-player.c:452
 msgid Copy url
-msgstr 
-
-#~ msgid Enabled
-#~ msgstr 有効
-
-#~ msgid Plugin
-#~ msgstr プラグイン
+msgstr URL のコピー
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master l10n: Updates to Catalan (Valencian) (ca) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to 3fc4f6347f03e52289bd54acee3d7a28331026a9 (commit)
   from 4e710f23018c762e76bd25b77a855f870433bdbf (commit)

commit 3fc4f6347f03e52289bd54acee3d7a28331026a9
Author: Harald Servat redcr...@gmail.com
Date:   Mon Dec 7 16:52:13 2009 +

l10n: Updates to Catalan (Valencian) (ca) translation

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

 po/ca.po |   91 ++---
 1 files changed, 33 insertions(+), 58 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 377a081..2c5007c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: midori\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-29 23:58+0200\n
-PO-Revision-Date: 2009-12-07 13:11+0100\n
+PO-Revision-Date: 2009-12-07 17:51+0100\n
 Last-Translator: Harald Servat redcr...@gmail.com\n
 Language-Team: Catalan\n
 MIME-Version: 1.0\n
@@ -525,9 +525,8 @@ msgid Decrease the zoom level
 msgstr Disminueix el nivell de zoom
 
 #: ../midori/midori-browser.c:4244
-#, fuzzy
 msgid Reset the zoom level
-msgstr Nivell màxim de zoom
+msgstr Reiniciar el nivell de zoom
 
 #: ../midori/midori-browser.c:4245
 msgid _Encoding
@@ -665,9 +664,8 @@ msgid Show information about the program
 msgstr Mostra la informació sobre aquest programa
 
 #: ../midori/midori-browser.c:4315
-#, fuzzy
 msgid P_rivate Browsing
-msgstr Navegació web
+msgstr Navegació p_rivada
 
 #: ../midori/midori-browser.c:4316
 msgid Don't save any private data while browsing
@@ -686,9 +684,8 @@ msgid _Navigationbar
 msgstr Barra de _navegació
 
 #: ../midori/midori-browser.c:4326
-#, fuzzy
 msgid Show navigationbar
-msgstr Mostra parpellejant
+msgstr Mostra barra de navegació
 
 #: ../midori/midori-browser.c:4329
 msgid Side_panel
@@ -782,9 +779,8 @@ msgid Reopen a previously closed tab or window
 msgstr Reobrir una pestanya o finestra prèviament tancada
 
 #: ../midori/midori-browser.c:4877
-#, fuzzy
 msgid _Recently visited pages
-msgstr Creua les pàgines visitades
+msgstr Pàgines visitades _recentment
 
 #: ../midori/midori-browser.c:4879
 msgid Reopen pages that you visited earlier
@@ -808,9 +804,8 @@ msgid _Window
 msgstr _Finestra
 
 #: ../midori/midori-browser.c:4925
-#, fuzzy
 msgid Show a list of all open tabs
-msgstr Mostra o amaga tots els diàlegs actius
+msgstr Mostra una llista de totes les pestanyes obertes
 
 #: ../midori/midori-browser.c:4939
 msgid _Menu
@@ -822,9 +817,8 @@ msgstr Menú
 
 #. i18n: A panel at the bottom, to search text in pages
 #: ../midori/midori-browser.c:5127
-#, fuzzy
 msgid _Inline Find:
-msgstr No s'ha pogut trobar «%s»
+msgstr Cerca en _línia:
 
 #: ../midori/midori-browser.c:5152
 msgid Previous
@@ -843,9 +837,8 @@ msgid Highlight Matches
 msgstr Ressalta les coincidències
 
 #: ../midori/midori-browser.c:5180
-#, fuzzy
 msgid Close Findbar
-msgstr no s'ha pogut tancar
+msgstr Tanca la barra de cerques
 
 #: ../midori/midori-browser.c:5215
 #: ../extensions/cookie-manager/cookie-manager-page.c:109
@@ -853,9 +846,9 @@ msgid Delete All
 msgstr Suprimeix-ho tot
 
 #: ../midori/midori-browser.c:5552
-#, fuzzy, c-format
+#, c-format
 msgid Unexpected setting '%s'
-msgstr en establir les dates de %s
+msgstr Opció inesperada '%s'
 
 #: ../midori/midori-locationaction.c:901
 #, c-format
@@ -1160,9 +1153,8 @@ msgid The homepage
 msgstr La pàgina d'inici
 
 #: ../midori/midori-websettings.c:597
-#, fuzzy
 msgid Show crash dialog
-msgstr Inhabilita el diàleg de fallades
+msgstr Mostra el diàleg de fallades
 
 #: ../midori/midori-websettings.c:598
 msgid Show a dialog after Midori crashed
@@ -1419,18 +1411,16 @@ msgstr 
 
 #. i18n: This refers to an application, not the 'user agent' string
 #: ../midori/midori-websettings.c:938
-#, fuzzy
 msgid Identify as
-msgstr Desa _com
+msgstr Identifica com
 
 #: ../midori/midori-websettings.c:939
 msgid What to identify as to web pages
 msgstr Què identificar com a pàgines web
 
 #: ../midori/midori-websettings.c:955
-#, fuzzy
 msgid Identification string
-msgstr la cadena no és terminada
+msgstr Cadena de caràcters d'identificació
 
 #: ../midori/midori-websettings.c:956
 #, fuzzy
@@ -1548,34 +1538,30 @@ msgid Speed dial
 msgstr Tipus _de marcatge:
 
 #: ../midori/midori-view.c:2148
-#, fuzzy
 msgid Click to add a shortcut
-msgstr No s'ha pogut afegir una drecera nova
+msgstr Feu clic per a afegir una drecera
 
 #: ../midori/midori-view.c:2149
-#, fuzzy
 msgid Enter shortcut address
-msgstr Introduïu una adreça electrònica
+msgstr Introduïu l'adreça de la drecera
 
 #: ../midori/midori-view.c:2150
-#, fuzzy
 msgid Enter shortcut title
-msgstr Introduïu el títol de la cançó.
+msgstr Introdueix un títol per a la drecera
 
 #: ../midori/midori-view.c:2151
-#, fuzzy
 msgid Are you sure you want to delete this shortcut?
-msgstr Esteu segur que voleu suprimir aquest compartit?
+msgstr Esteu segur d'esborrar aquesta drecera?
 
 #: ../midori/midori-view.c:2181
-#, fuzzy, c-format
+#, c-format
 

[Xfce4-commits] parole:master l10n: Updates to German (de) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to bd7cfc2501691666b8a077c4ad9cc703bbd4ec86 (commit)
   from f3bbdd9f928e1e2cd892b2e2b3c4b0398a0c6bbe (commit)

commit bd7cfc2501691666b8a077c4ad9cc703bbd4ec86
Author: Christoph Wickert christoph.wick...@googlemail.com
Date:   Mon Dec 7 17:27:14 2009 +

l10n: Updates to German (de) translation

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

 po/de.po |  269 --
 1 files changed, 139 insertions(+), 130 deletions(-)

diff --git a/po/de.po b/po/de.po
index f59f925..f89e3d4 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,8 +7,8 @@ msgid 
 msgstr 
 Project-Id-Version: parole master\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-06 19:00+0100\n
-PO-Revision-Date: 2009-11-29 14:49+0100\n
+POT-Creation-Date: 2009-11-27 10:38+0100\n
+PO-Revision-Date: 2009-12-07 18:26+0100\n
 Last-Translator: Christoph Wickert cwick...@fedoraproject.org\n
 Language-Team: German gnome...@gnome.org\n
 MIME-Version: 1.0\n
@@ -54,7 +54,8 @@ msgstr Medien-Abspieler
 msgid Mute
 msgstr Stumm
 
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:1079
+#: ../data/interfaces/parole.ui.h:10
+#: ../src/parole-player.c:1093
 #: ../src/parole-disc-menu.c:113
 msgid Next Chapter
 msgstr Nächstes Kapitel/Film
@@ -63,8 +64,10 @@ msgstr Nächstes Kapitel/Film
 msgid None
 msgstr Kein
 
-#: ../data/interfaces/parole.ui.h:12 ../data/desktop/parole.desktop.in.in.h:1
-#: ../src/parole-about.c:70 ../plugins/window-title/window-title-provider.c:58
+#: ../data/interfaces/parole.ui.h:12
+#: ../data/desktop/parole.desktop.in.in.h:1
+#: ../src/parole-about.c:52
+#: ../plugins/window-title/window-title-provider.c:58
 msgid Parole Media Player
 msgstr Parole Medien-Abspieler
 
@@ -72,7 +75,8 @@ msgstr Parole Medien-Abspieler
 msgid Plugins
 msgstr Erweiterungen
 
-#: ../data/interfaces/parole.ui.h:14 ../src/parole-player.c:1091
+#: ../data/interfaces/parole.ui.h:14
+#: ../src/parole-player.c:1105
 #: ../src/parole-disc-menu.c:114
 msgid Previous Chapter
 msgstr Vorheriges Kapitel/Film
@@ -225,29 +229,23 @@ msgstr Nach Dateierweiterung
 msgid Select File Types (By Extension)
 msgstr Dateitypen auswählen (nach Erweiterung)
 
-#: ../gst/parole-gst.c:1492
+#: ../gst/parole-gst.c:1489
 msgid The stream is taking too much time to load
 msgstr Der Stream benötigt zu viel Zeit zum Laden
 
-#: ../gst/parole-gst.c:1492
+#: ../gst/parole-gst.c:1489
 msgid Stop
 msgstr Stop
 
-#: ../gst/parole-gst.c:1681
-msgid 
-Unable to load playbin GStreamer plugin, check your GStreamer installation
-msgstr 
-Playbin-GStreamer-Plugin kann nicht geladen werden, überprüfen Sie Ihre 
-GStreamer-Installation
+#: ../gst/parole-gst.c:1674
+msgid Unable to load playbin GStreamer plugin, check your GStreamer 
installation
+msgstr Playbin-GStreamer-Plugin kann nicht geladen werden, überprüfen Sie 
Ihre GStreamer-Installation
 
-#: ../gst/parole-gst.c:1701
-msgid 
-Unable to load video GStreamer plugin, check your GStreamer installation
-msgstr 
-Video-GStreamer-Plugin kann nicht geladen werden, überprüfen Sie Ihre 
-GStreamer-Installation
+#: ../gst/parole-gst.c:1690
+msgid Unable to load video GStreamer plugin, check your GStreamer 
installation
+msgstr Video-GStreamer-Plugin kann nicht geladen werden, überprüfen Sie Ihre 
GStreamer-Installation
 
-#: ../src/main.c:54
+#: ../src/main.c:53
 #, c-format
 msgid 
 \n
@@ -268,75 +266,66 @@ msgstr 
 Lizensiert unter der GNU GPL.\n
 \n
 
-#: ../src/main.c:175
-msgid Unknown argument 
-msgstr 
-
-#: ../src/main.c:212
+#: ../src/main.c:191
 msgid Open a new instance
 msgstr Eine neue Instanz öffnen
 
-#: ../src/main.c:213
+#: ../src/main.c:192
 msgid Do not load plugins
 msgstr Keine Erweiterungen laden
 
-#: ../src/main.c:214
+#: ../src/main.c:193
 msgid Set Audio-CD/VCD/DVD device path
 msgstr Pfad des Audio-CD/VCD/DVD Gerätes angeben
 
-#: ../src/main.c:215
+#: ../src/main.c:194
 msgid Play or pause if already playing
 msgstr Wiedergabe (oder Pause, falls Wiedergabe läuft)
 
-#: ../src/main.c:216
+#: ../src/main.c:195
 msgid Stop playing
 msgstr Wiedergabe anhalten
 
-#: ../src/main.c:217
+#: ../src/main.c:196
 msgid Next track
 msgstr Nachfolgender Titel
 
-#: ../src/main.c:218
+#: ../src/main.c:197
 msgid Previous track
 msgstr Vorheriger Titel
 
-#: ../src/main.c:219
+#: ../src/main.c:198
 msgid Seek forward
 msgstr Vorspulen
 
-#: ../src/main.c:220
+#: ../src/main.c:199
 msgid Seek Backward
 msgstr Zurückspulen
 
-#: ../src/main.c:221
+#: ../src/main.c:200
 msgid Raise volume
 msgstr Lautstärke erhöhen
 
-#: ../src/main.c:222
+#: ../src/main.c:201
 msgid Lower volume
 msgstr Lautstärke senken
 
-#: ../src/main.c:223
+#: ../src/main.c:202
 msgid Mute volume
 msgstr Stummschalten
 
-#: ../src/main.c:224
+#: ../src/main.c:203
 msgid Version information
 msgstr Versionsinformation
 
-#: ../src/main.c:225
-msgid Enabled/Disable XV support
-msgstr 
-
-#: ../src/main.c:227
+#: ../src/main.c:205
 msgid Media to 

[Xfce4-commits] xfce4-clipman-plugin:master Make the code GSEAL-proof

2009-12-07 Thread Mike Massonnet
Updating branch refs/heads/master
 to 3f35d6444792bcbda2bc7a9880e1e576cf7293be (commit)
   from b945efc54dd5b737c901ec8dbf5d24a58dd8e6df (commit)

commit 3f35d6444792bcbda2bc7a9880e1e576cf7293be
Author: Mike Massonnet mmasson...@xfce.org
Date:   Mon Dec 7 18:34:05 2009 +0100

Make the code GSEAL-proof

 daemon/Makefile.am |1 +
 daemon/gsd-clipboard-manager.c |   15 ---
 panel-plugin/Makefile.am   |1 +
 panel-plugin/main-panel-plugin.c   |   16 +---
 panel-plugin/plugin.c  |2 +-
 panel-plugin/xfce4-popup-clipman.c |2 +-
 6 files changed, 21 insertions(+), 16 deletions(-)

diff --git a/daemon/Makefile.am b/daemon/Makefile.am
index 2d1a10a..5f87b7e 100644
--- a/daemon/Makefile.am
+++ b/daemon/Makefile.am
@@ -1,6 +1,7 @@
 NULL = 
 
 INCLUDES = \
+   -DGSEAL_ENABLE  \
-I${top_srcdir} \
-DPACKAGE_LOCALE_DIR=\$(localedir)\   \
$(NULL)
diff --git a/daemon/gsd-clipboard-manager.c b/daemon/gsd-clipboard-manager.c
index 016e031..0e96741 100644
--- a/daemon/gsd-clipboard-manager.c
+++ b/daemon/gsd-clipboard-manager.c
@@ -123,7 +123,8 @@ default_clipboard_get_func (GtkClipboard *clipboard,
 list = manager-priv-default_cache;
 for (; list-next != NULL; list = list-next) {
 selection_data_cache = list-data;
-if (selection_data-target == selection_data_cache-target) {
+if (gtk_selection_data_get_target (selection_data) ==
+gtk_selection_data_get_target (selection_data_cache)) {
 break;
 }
 selection_data_cache = NULL;
@@ -131,10 +132,8 @@ default_clipboard_get_func (GtkClipboard *clipboard,
 if (selection_data_cache == NULL) {
 return;
 }
-gtk_selection_data_set (selection_data, selection_data-target,
-selection_data_cache-format,
-selection_data_cache-data,
-selection_data_cache-length);
+gtk_selection_data_free (selection_data);
+selection_data = gtk_selection_data_copy (selection_data_cache);
 }
 
 static void
@@ -158,7 +157,9 @@ default_clipboard_restore (GsdClipboardManager *manager)
 list = manager-priv-default_cache;
 for (; list-next != NULL; list = list-next) {
 sdata = list-data;
-gtk_target_list_add (target_list, sdata-target, 0, 0);
+gtk_target_list_add (target_list,
+ gtk_selection_data_get_target (sdata),
+ 0, 0);
 }
 targets = gtk_target_table_new_from_list (target_list, n_targets);
 
@@ -249,7 +250,7 @@ start_clipboard_idle_cb (GsdClipboardManager *manager)
 manager-priv-window = gtk_invisible_new ();
 gtk_widget_realize (manager-priv-window);
 
-window = GDK_WINDOW_XID (manager-priv-window-window);
+window = GDK_WINDOW_XID (gtk_widget_get_window 
(manager-priv-window));
 timestamp = GDK_CURRENT_TIME;
 
 XSelectInput (display, window, PropertyChangeMask);
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index c0d9d9f..d7bde8f 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -1,6 +1,7 @@
 NULL = 
 
 INCLUDES = \
+   -DGSEAL_ENABLE  \
-I${top_srcdir} \
-DSYSCONFDIR=\$(sysconfdir)\  \
-DDATAROOTDIR=\$(datarootdir)\\
diff --git a/panel-plugin/main-panel-plugin.c b/panel-plugin/main-panel-plugin.c
index 6ca334a..2777400 100644
--- a/panel-plugin/main-panel-plugin.c
+++ b/panel-plugin/main-panel-plugin.c
@@ -110,8 +110,8 @@ panel_plugin_set_size (MyPlugin *plugin,
 
   gtk_widget_set_size_request (plugin-button, size, size);
 
-  size -= 2 + 2 * MAX (plugin-button-style-xthickness,
-   plugin-button-style-ythickness);
+  size -= 2 + 2 * MAX (gtk_widget_get_style (plugin-button)-xthickness,
+   gtk_widget_get_style (plugin-button)-ythickness);
   pixbuf = xfce_themed_icon_load (GTK_STOCK_PASTE, size);
   gtk_image_set_from_pixbuf (GTK_IMAGE (plugin-image), pixbuf);
   g_object_unref (G_OBJECT (pixbuf));
@@ -148,23 +148,25 @@ my_plugin_position_menu (GtkMenu *menu,
  MyPlugin *plugin)
 {
   GtkWidget *button;
+  gint button_width, button_height;
   GtkRequisition requisition;
   GtkOrientation orientation;
 
   button = plugin-button;
   orientation = xfce_panel_plugin_get_orientation 

[Xfce4-commits] xfce4-clipman-plugin:master [daemon] Be less aggressive to store the primary clipboard

2009-12-07 Thread Mike Massonnet
Updating branch refs/heads/master
 to 7863bcc009ab03d0200a965f03565a4da2d76fb8 (commit)
   from 3f35d6444792bcbda2bc7a9880e1e576cf7293be (commit)

commit 7863bcc009ab03d0200a965f03565a4da2d76fb8
Author: Mike Massonnet mmasson...@xfce.org
Date:   Mon Dec 7 18:57:51 2009 +0100

[daemon] Be less aggressive to store the primary clipboard

The primary clipboard was saved very, very aggressively. This showed a
real slow down when doing selections. Now it is delayed inside a timeout
at a quarter second interval and will save for real once the selection
is done (no mouse button hold or shift button on keyboard).
If the selection is lost, we avoid storing the cached value again by
keeping a state with an internal boolean value.

 daemon/gsd-clipboard-manager.c |   50 ++-
 1 files changed, 38 insertions(+), 12 deletions(-)

diff --git a/daemon/gsd-clipboard-manager.c b/daemon/gsd-clipboard-manager.c
index 0e96741..3e3097b 100644
--- a/daemon/gsd-clipboard-manager.c
+++ b/daemon/gsd-clipboard-manager.c
@@ -39,9 +39,11 @@ struct GsdClipboardManagerPrivate
 GtkClipboard *primary_clipboard;
 
 GSList   *default_cache;
-gchar*primary_cache;
+gboolean  default_internal_change;
 
-gboolean  internal_change;
+gchar*primary_cache;
+gboolean  primary_timeout;
+gboolean  primary_internal_change;
 
 GtkWidget*window;
 };
@@ -179,8 +181,8 @@ default_clipboard_owner_change (GsdClipboardManager 
*manager,
 }
 
 if (event-owner != 0) {
-if (manager-priv-internal_change) {
-manager-priv-internal_change = FALSE;
+if (manager-priv-default_internal_change) {
+manager-priv-default_internal_change = FALSE;
 return;
 }
 default_clipboard_store (manager);
@@ -195,30 +197,53 @@ default_clipboard_owner_change (GsdClipboardManager 
*manager,
  * e.g. owner is not 0). By the second time we would store
  * ourself back with an empty clipboard... solution is to jump
  * over the first time and don't try to restore empty data. */
-if (manager-priv-internal_change) {
+if (manager-priv-default_internal_change) {
 return;
 }
 
-manager-priv-internal_change = TRUE;
+manager-priv-default_internal_change = TRUE;
 default_clipboard_restore (manager);
 }
 }
 
+static gboolean
+primary_clipboard_store (GsdClipboardManager *manager)
+{
+GdkModifierType state;
+gchar *text;
+
+gdk_window_get_pointer (NULL, NULL, NULL, state);
+if (state  (GDK_BUTTON1_MASK|GDK_SHIFT_MASK)) {
+return TRUE;
+}
+
+text = gtk_clipboard_wait_for_text (manager-priv-primary_clipboard);
+if (text != NULL) {
+g_free (manager-priv-primary_cache);
+manager-priv-primary_cache = text;
+}
+
+manager-priv-primary_timeout = 0;
+
+return FALSE;
+}
+
 static void
 primary_clipboard_owner_change (GsdClipboardManager *manager,
 GdkEventOwnerChange *event)
 {
-gchar *text;
-
 if (event-send_event == TRUE) {
 return;
 }
 
 if (event-owner != 0) {
-text = gtk_clipboard_wait_for_text 
(manager-priv-primary_clipboard);
-if (text != NULL) {
-g_free (manager-priv-primary_cache);
-manager-priv-primary_cache = text;
+if (manager-priv-primary_internal_change == TRUE) {
+manager-priv-primary_internal_change = FALSE;
+return;
+}
+if (manager-priv-primary_timeout == 0) {
+manager-priv-primary_timeout =
+  g_timeout_add (250, 
(GSourceFunc)primary_clipboard_store, manager);
 }
 }
 else {
@@ -226,6 +251,7 @@ primary_clipboard_owner_change (GsdClipboardManager 
*manager,
 gtk_clipboard_set_text 
(manager-priv-primary_clipboard,
 manager-priv-primary_cache,
 -1);
+manager-priv-primary_internal_change = TRUE;
 }
 }
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-utils:master l10n: Updates to Italian (it) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/master
 to ffcf9ec74492453cc4dc89e7d2a4a540a33cb3c2 (commit)
   from 3eaf99ef9de8b0ca1b4751b90eef8729320eaf00 (commit)

commit ffcf9ec74492453cc4dc89e7d2a4a540a33cb3c2
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Dec 7 19:04:06 2009 +

l10n: Updates to Italian (it) translation

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

 po/it.po |   69 +
 1 files changed, 33 insertions(+), 36 deletions(-)

diff --git a/po/it.po b/po/it.po
index ff1cea1..7da348f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,27 +3,28 @@
 # This file is distributed under the same license as the xfce-utils package.
 # Davide D'Amico d...@gufi.org, 2003.
 # Alex Dupre a...@freebsd.org, 2005.
+# Cristian Marchi cri.pe...@gmail.com, 2009.
 #
 msgid 
 msgstr 
-Project-Id-Version: xfce-utils 4.4.0\n
+Project-Id-Version: xfce-utils\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-02-01 11:39+0100\n
-PO-Revision-Date: 2005-10-07 23:28+0900\n
-Last-Translator: Alex Dupre a...@freebsd.org\n
-Language-Team: GUFI traduzi...@gufi.org\n
+PO-Revision-Date: 2009-12-07 19:59+0100\n
+Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
+Language-Team: Italian Translation Team 
xfce-it-translat...@googlegroups.com\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 
 #: ../xfce4-about/info.c:197
 msgid Unable to load 
-msgstr 
+msgstr Caricamento non riuscito
 
 #. Project lead
 #: ../xfce4-about/info.c:226
 msgid Project Lead
-msgstr Capo Progetto
+msgstr Capo progetto
 
 #. Core developers
 #: ../xfce4-about/info.c:230
@@ -33,27 +34,26 @@ msgstr Sviluppatori principali
 #. Active contributors
 #: ../xfce4-about/info.c:234
 msgid Active contributors
-msgstr 
+msgstr Collaboratori attivi
 
 #. Previous contributors
 #: ../xfce4-about/info.c:238
 msgid Previous contributors
-msgstr 
+msgstr Collaboratori precedenti
 
 #: ../xfce4-about/info.c:243
 msgid Web Hosting and Mailing Lists provided by
-msgstr 
+msgstr Host del servizio web e mailing list forniti da
 
 #. Server admins
 #: ../xfce4-about/info.c:275
 msgid Server maintained by
-msgstr 
+msgstr Server mantenuto da
 
 #. Goodies supervision
 #: ../xfce4-about/info.c:279
-#, fuzzy
 msgid Goodies supervision
-msgstr Supervisione dei traduttori
+msgstr Supervisione dei \goodie\
 
 #. Translations supervision
 #: ../xfce4-about/info.c:283
@@ -67,25 +67,24 @@ msgstr Traduttori
 
 #: ../xfce4-about/info.c:318
 msgid If you know of anyone missing from this list, please let us know on 
-msgstr 
+msgstr Se dovesse mancare qualcuno nell'elenco, fatecelo sapere su 
 
 #: ../xfce4-about/info.c:322
 msgid Thanks to all who helped making this software available.
-msgstr 
+msgstr Si ringraziano tutti quelli che hanno contribuito a rendere questo 
programma disponibile.
 
 #: ../xfce4-about/info.c:431
 msgid About Xfce 4
-msgstr Info su Xfce 4
+msgstr Informazioni su Xfce 4
 
 #: ../xfce4-about/info.c:432
-#, fuzzy
 msgid Copyright 2002-2009 by Olivier Fourdan
 msgstr Copyright 2002-2009 di Olivier Fourdan
 
 #  add pages
 #: ../xfce4-about/info.c:455
 msgid Info
-msgstr Info
+msgstr Informazioni
 
 #. add_page (GTK_NOTEBOOK (notebook), _(Credits), XFCE_AUTHORS, FALSE);
 #: ../xfce4-about/info.c:457
@@ -111,34 +110,36 @@ msgstr GPL
 #. we don't support daemon mode
 #: ../xfrun/xfrun.c:50
 msgid Daemon Mode
-msgstr 
+msgstr Modalità demone
 
 #: ../xfrun/xfrun.c:52
 msgid Daemon mode is not supported.
-msgstr 
+msgstr La modalità demone non è supportata.
 
 #: ../xfrun/xfrun.c:53
 msgid Xfrun must be compiled with D-BUS support to enable daemon mode.
-msgstr 
+msgstr Xfrun deve essere compilato con il supporto a D-BUS per poter 
abilitare la modalità demone.
 
 #: ../xfrun/xfrun-dbus.c:141
 #, c-format
 msgid Unable to open display \%s\.
-msgstr 
+msgstr Impossibile aprire lo schermo \%s\.
 
 #: ../xfrun/xfrun-dbus.c:200
 #, c-format
 msgid D-BUS message bus disconnected. Exiting ...\n
-msgstr 
+msgstr Bus del messaggio D-BUS disconnesso. Uscita in corso...\n
 
 #. failed
-#: ../xfrun/xfrun-dbus.c:342 ../xfrun/xfrun-dbus.c:353
+#: ../xfrun/xfrun-dbus.c:342
+#: ../xfrun/xfrun-dbus.c:353
 msgid System Error
-msgstr 
+msgstr Errore di sistema
 
-#: ../xfrun/xfrun-dbus.c:344 ../xfrun/xfrun-dbus.c:355
+#: ../xfrun/xfrun-dbus.c:344
+#: ../xfrun/xfrun-dbus.c:355
 msgid Unable to fork to background:
-msgstr 
+msgstr Impossibile effettuare il fork in background
 
 #: ../xfrun/xfrun-dialog.c:188
 msgid Run in _terminal
@@ -151,22 +152,20 @@ msgstr _Esegui
 #: ../xfrun/xfrun-dialog.c:540
 #, c-format
 msgid The command \%s\ failed to run:
-msgstr 
+msgstr Non è riuscita l'esecuzione del comando \%s\:
 
 #: ../xfrun/xfrun-dialog.c:542
-#, fuzzy
 msgid Run Error
-msgstr Esegui il programma
+msgstr Errore di esecuzione
 
 #: ../xfrun/xfrun-dialog.c:544
-#, fuzzy
 msgid Unknown Error
-msgstr Esegui il programma
+msgstr Errore sconosciuto
 
 #: 

[Xfce4-commits] xfce-utils:xfce-4.6 l10n: Updates to Italian (it) translation

2009-12-07 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to 05bbfe2797e99c888a79cf23018d3b3b40610167 (commit)
   from a8a203b374f6d8e638379d116b7b06795cfd55d1 (commit)

commit 05bbfe2797e99c888a79cf23018d3b3b40610167
Author: Cristian Marchi cri.pe...@gmail.com
Date:   Mon Dec 7 19:05:36 2009 +

l10n: Updates to Italian (it) translation

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

 po/it.po |   69 +
 1 files changed, 33 insertions(+), 36 deletions(-)

diff --git a/po/it.po b/po/it.po
index ff1cea1..7da348f 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,27 +3,28 @@
 # This file is distributed under the same license as the xfce-utils package.
 # Davide D'Amico d...@gufi.org, 2003.
 # Alex Dupre a...@freebsd.org, 2005.
+# Cristian Marchi cri.pe...@gmail.com, 2009.
 #
 msgid 
 msgstr 
-Project-Id-Version: xfce-utils 4.4.0\n
+Project-Id-Version: xfce-utils\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-02-01 11:39+0100\n
-PO-Revision-Date: 2005-10-07 23:28+0900\n
-Last-Translator: Alex Dupre a...@freebsd.org\n
-Language-Team: GUFI traduzi...@gufi.org\n
+PO-Revision-Date: 2009-12-07 19:59+0100\n
+Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
+Language-Team: Italian Translation Team 
xfce-it-translat...@googlegroups.com\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 
 #: ../xfce4-about/info.c:197
 msgid Unable to load 
-msgstr 
+msgstr Caricamento non riuscito
 
 #. Project lead
 #: ../xfce4-about/info.c:226
 msgid Project Lead
-msgstr Capo Progetto
+msgstr Capo progetto
 
 #. Core developers
 #: ../xfce4-about/info.c:230
@@ -33,27 +34,26 @@ msgstr Sviluppatori principali
 #. Active contributors
 #: ../xfce4-about/info.c:234
 msgid Active contributors
-msgstr 
+msgstr Collaboratori attivi
 
 #. Previous contributors
 #: ../xfce4-about/info.c:238
 msgid Previous contributors
-msgstr 
+msgstr Collaboratori precedenti
 
 #: ../xfce4-about/info.c:243
 msgid Web Hosting and Mailing Lists provided by
-msgstr 
+msgstr Host del servizio web e mailing list forniti da
 
 #. Server admins
 #: ../xfce4-about/info.c:275
 msgid Server maintained by
-msgstr 
+msgstr Server mantenuto da
 
 #. Goodies supervision
 #: ../xfce4-about/info.c:279
-#, fuzzy
 msgid Goodies supervision
-msgstr Supervisione dei traduttori
+msgstr Supervisione dei \goodie\
 
 #. Translations supervision
 #: ../xfce4-about/info.c:283
@@ -67,25 +67,24 @@ msgstr Traduttori
 
 #: ../xfce4-about/info.c:318
 msgid If you know of anyone missing from this list, please let us know on 
-msgstr 
+msgstr Se dovesse mancare qualcuno nell'elenco, fatecelo sapere su 
 
 #: ../xfce4-about/info.c:322
 msgid Thanks to all who helped making this software available.
-msgstr 
+msgstr Si ringraziano tutti quelli che hanno contribuito a rendere questo 
programma disponibile.
 
 #: ../xfce4-about/info.c:431
 msgid About Xfce 4
-msgstr Info su Xfce 4
+msgstr Informazioni su Xfce 4
 
 #: ../xfce4-about/info.c:432
-#, fuzzy
 msgid Copyright 2002-2009 by Olivier Fourdan
 msgstr Copyright 2002-2009 di Olivier Fourdan
 
 #  add pages
 #: ../xfce4-about/info.c:455
 msgid Info
-msgstr Info
+msgstr Informazioni
 
 #. add_page (GTK_NOTEBOOK (notebook), _(Credits), XFCE_AUTHORS, FALSE);
 #: ../xfce4-about/info.c:457
@@ -111,34 +110,36 @@ msgstr GPL
 #. we don't support daemon mode
 #: ../xfrun/xfrun.c:50
 msgid Daemon Mode
-msgstr 
+msgstr Modalità demone
 
 #: ../xfrun/xfrun.c:52
 msgid Daemon mode is not supported.
-msgstr 
+msgstr La modalità demone non è supportata.
 
 #: ../xfrun/xfrun.c:53
 msgid Xfrun must be compiled with D-BUS support to enable daemon mode.
-msgstr 
+msgstr Xfrun deve essere compilato con il supporto a D-BUS per poter 
abilitare la modalità demone.
 
 #: ../xfrun/xfrun-dbus.c:141
 #, c-format
 msgid Unable to open display \%s\.
-msgstr 
+msgstr Impossibile aprire lo schermo \%s\.
 
 #: ../xfrun/xfrun-dbus.c:200
 #, c-format
 msgid D-BUS message bus disconnected. Exiting ...\n
-msgstr 
+msgstr Bus del messaggio D-BUS disconnesso. Uscita in corso...\n
 
 #. failed
-#: ../xfrun/xfrun-dbus.c:342 ../xfrun/xfrun-dbus.c:353
+#: ../xfrun/xfrun-dbus.c:342
+#: ../xfrun/xfrun-dbus.c:353
 msgid System Error
-msgstr 
+msgstr Errore di sistema
 
-#: ../xfrun/xfrun-dbus.c:344 ../xfrun/xfrun-dbus.c:355
+#: ../xfrun/xfrun-dbus.c:344
+#: ../xfrun/xfrun-dbus.c:355
 msgid Unable to fork to background:
-msgstr 
+msgstr Impossibile effettuare il fork in background
 
 #: ../xfrun/xfrun-dialog.c:188
 msgid Run in _terminal
@@ -151,22 +152,20 @@ msgstr _Esegui
 #: ../xfrun/xfrun-dialog.c:540
 #, c-format
 msgid The command \%s\ failed to run:
-msgstr 
+msgstr Non è riuscita l'esecuzione del comando \%s\:
 
 #: ../xfrun/xfrun-dialog.c:542
-#, fuzzy
 msgid Run Error
-msgstr Esegui il programma
+msgstr Errore di esecuzione
 
 #: ../xfrun/xfrun-dialog.c:544
-#, fuzzy
 msgid Unknown Error
-msgstr Esegui il programma
+msgstr Errore sconosciuto
 
 #: 

[Xfce4-commits] midori:master Allow Ctrl+C to break normally while still handling it well

2009-12-07 Thread Christian Dywan
Updating branch refs/heads/master
 to fadd0f31c2cd3e027870a3c0c931c864ad4d84b7 (commit)
   from 3fc4f6347f03e52289bd54acee3d7a28331026a9 (commit)

commit fadd0f31c2cd3e027870a3c0c931c864ad4d84b7
Author: Christian Dywan christ...@twotoasts.de
Date:   Mon Dec 7 20:10:33 2009 +0100

Allow Ctrl+C to break normally while still handling it well

 midori/main.c |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/midori/main.c b/midori/main.c
index bfccfae..961ef2c 100644
--- a/midori/main.c
+++ b/midori/main.c
@@ -1576,8 +1576,10 @@ midori_remove_config_file (gint clear_prefs,
 static void
 signal_handler (int signal_id)
 {
+signal (signal_id, 0);
 midori_app_quit_cb (NULL);
-gtk_main_quit ();
+if (kill (getpid (), signal_id))
+  exit (1);
 }
 #endif
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Update default search engine if the according search engine is modified

2009-12-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 61e51c1991c1c0c3b8293d4c8722264c3cd60a64 (commit)
   from fadd0f31c2cd3e027870a3c0c931c864ad4d84b7 (commit)

commit 61e51c1991c1c0c3b8293d4c8722264c3cd60a64
Author: Daniel Michalik d...@blackamp.de
Date:   Mon Dec 7 20:13:31 2009 +0100

Update default search engine if the according search engine is modified

 midori/midori-searchaction.c |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/midori/midori-searchaction.c b/midori/midori-searchaction.c
index e324b19..b469ce5 100644
--- a/midori/midori-searchaction.c
+++ b/midori/midori-searchaction.c
@@ -1031,6 +1031,10 @@ midori_search_action_get_editor (MidoriSearchAction* 
search_action,
 
 if (new_engine)
 katze_array_add_item (search_action-search_engines, item);
+/* If it isn't a new search engine but the old default one,
+   we need to update the default search engine after editing it. */
+else if (item == midori_search_action_get_default_item (search_action))
+midori_search_action_set_default_item (search_action, item);
 }
 gtk_widget_destroy (dialog);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Try to search for it, if middle click open encounters a non-URI

2009-12-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 427ae90f088f863bf7169b5ce642898efa43f063 (commit)
   from 61e51c1991c1c0c3b8293d4c8722264c3cd60a64 (commit)

commit 427ae90f088f863bf7169b5ce642898efa43f063
Author: Christian Dywan christ...@twotoasts.de
Date:   Mon Dec 7 20:35:11 2009 +0100

Try to search for it, if middle click open encounters a non-URI

 midori/midori-view.c |   14 +++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/midori/midori-view.c b/midori/midori-view.c
index c2cbf8c..ac854a7 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -1260,14 +1260,22 @@ gtk_widget_button_press_event_cb (WebKitWebView*  
web_view,
 clipboard = gtk_clipboard_get_for_display (
 gtk_widget_get_display (GTK_WIDGET (view)),
 GDK_SELECTION_PRIMARY);
-uri = gtk_clipboard_wait_for_text (clipboard);
-if (uri  strchr (uri, '.'))
+if ((uri = gtk_clipboard_wait_for_text (clipboard)))
 {
+KatzeArray* empty_array = katze_array_new (KATZE_TYPE_ITEM);
 guint i = 0;
 while (uri[i++] != '\0')
 if (uri[i] == '\n' || uri[i] == '\r')
 uri[i] = ' ';
-new_uri = sokoke_magic_uri (g_strstrip (uri), NULL);
+new_uri = sokoke_magic_uri (g_strstrip (uri), empty_array);
+g_object_unref (empty_array);
+if (!new_uri)
+{
+gchar* search;
+g_object_get (view-settings, location-entry-search,
+  search, NULL);
+new_uri = sokoke_search_uri (search, uri);
+}
 if (event-state  GDK_CONTROL_MASK)
 {
 background = view-open_tabs_in_the_background;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Implement Quit in Midori in web application mode

2009-12-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 38205dd35194416fcdc1ae220bd304121d6cdb97 (commit)
   from 427ae90f088f863bf7169b5ce642898efa43f063 (commit)

commit 38205dd35194416fcdc1ae220bd304121d6cdb97
Author: Christian Dywan christ...@twotoasts.de
Date:   Mon Dec 7 20:41:13 2009 +0100

Implement Quit in Midori in web application mode

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

diff --git a/midori/main.c b/midori/main.c
index 961ef2c..b87504b 100644
--- a/midori/main.c
+++ b/midori/main.c
@@ -1762,6 +1762,8 @@ main (intargc,
 G_CALLBACK (midori_web_app_browser_notify_load_status_cb), NULL);
 midori_browser_add_uri (browser, webapp);
 g_object_set_data (G_OBJECT (browser), locked, (void*)1);
+g_signal_connect (browser, quit,
+G_CALLBACK (gtk_main_quit), NULL);
 g_signal_connect (browser, destroy,
 G_CALLBACK (gtk_main_quit), NULL);
 gtk_widget_show (GTK_WIDGET (browser));
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Handle -e/ --execute in Midori web application mode

2009-12-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 23a2d8e49167eda7f6fa7a24c371055d0fc4bbce (commit)
   from 38205dd35194416fcdc1ae220bd304121d6cdb97 (commit)

commit 23a2d8e49167eda7f6fa7a24c371055d0fc4bbce
Author: Christian Dywan christ...@twotoasts.de
Date:   Mon Dec 7 20:44:29 2009 +0100

Handle -e/ --execute in Midori web application mode

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

diff --git a/midori/main.c b/midori/main.c
index b87504b..66df49d 100644
--- a/midori/main.c
+++ b/midori/main.c
@@ -1768,6 +1768,8 @@ main (intargc,
 G_CALLBACK (gtk_main_quit), NULL);
 gtk_widget_show (GTK_WIDGET (browser));
 midori_browser_activate_action (browser, Location);
+if (execute)
+midori_browser_activate_action (browser, *uris);
 gtk_main ();
 return 0;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits