[Xfce4-commits] xfce4-settings:master Fix possible NULL values (bug #6119 #6120)

2010-01-07 Thread Jérôme Guelfucci
Updating branch refs/heads/master
 to a708e6281a4f3d8047d0c63c622538c1f554eff3 (commit)
   from 350b0364dcbb39674d7390d9586db5efc154391a (commit)

commit a708e6281a4f3d8047d0c63c622538c1f554eff3
Author: Mike Massonnet mmasson...@xfce.org
Date:   Thu Jan 7 00:21:39 2010 +0100

Fix possible NULL values (bug #6119 #6120)

As reported in xfce4-clipman there is a possible crash when the default
cache is used to restore content or fill the selection while it is NULL.

 xfce4-settings-helper/clipboard-manager.c |8 ++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/xfce4-settings-helper/clipboard-manager.c 
b/xfce4-settings-helper/clipboard-manager.c
index cf23f25..d214dbe 100644
--- a/xfce4-settings-helper/clipboard-manager.c
+++ b/xfce4-settings-helper/clipboard-manager.c
@@ -136,7 +136,7 @@ xfce_clipboard_manager_default_get_func (GtkClipboard 
*clipboard,
 
 list = manager-default_cache;
 
-for (; list-next != NULL; list = list-next)
+for (; list != NULL  list-next != NULL; list = list-next)
 {
 selection_data_cache = list-data;
 
@@ -178,9 +178,13 @@ xfce_clipboard_manager_default_restore 
(XfceClipboardManager *manager)
 
 g_return_if_fail (XFCE_IS_CLIPBOARD_MANAGER (manager));
 
+list = manager-default_cache;
+if (list == NULL)
+  return;
+
 target_list = gtk_target_list_new (NULL, 0);
 
-for (list = manager-default_cache; list-next != NULL; list = list-next)
+for (; list-next != NULL; list = list-next)
 {
 sdata = list-data;
 gtk_target_list_add (target_list,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-settings:master Update the NEWS file.

2010-01-07 Thread Jérôme Guelfucci
Updating branch refs/heads/master
 to d72a3fe7f5903bc386cccb95cfef0c074317e50d (commit)
   from a708e6281a4f3d8047d0c63c622538c1f554eff3 (commit)

commit d72a3fe7f5903bc386cccb95cfef0c074317e50d
Author: Jérôme Guelfucci jero...@xfce.org
Date:   Thu Jan 7 10:33:24 2010 +0100

Update the NEWS file.

 NEWS |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/NEWS b/NEWS
index 152737b..094aedf 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+4.7.1
+=
+- Fix possible crash in the clipboard manager (bug #6125).
+
 4.7.0
 =
 - Add clipboard manager to xfce4-settings-helper (bug #4333).
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] tumbler:master Remove unused function, fix noreturn compiler error.

2010-01-07 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to be8cece0ea3bdc0276e49e74ec0968060151309b (commit)
   from e461ed713aee38e8e62fd66e0f8db71384a27eaf (commit)

commit be8cece0ea3bdc0276e49e74ec0968060151309b
Author: Jannis Pohlmann jan...@xfce.org
Date:   Thu Jan 7 14:30:58 2010 +0100

Remove unused function, fix noreturn compiler error.

 plugins/jpeg-thumbnailer/jpeg-thumbnailer.c |   12 +---
 1 files changed, 1 insertions(+), 11 deletions(-)

diff --git a/plugins/jpeg-thumbnailer/jpeg-thumbnailer.c 
b/plugins/jpeg-thumbnailer/jpeg-thumbnailer.c
index ddbc172..20e9e98 100644
--- a/plugins/jpeg-thumbnailer/jpeg-thumbnailer.c
+++ b/plugins/jpeg-thumbnailer/jpeg-thumbnailer.c
@@ -71,6 +71,7 @@
 
 
 
+static void fatal_error_handler (j_common_ptrcinfo) 
G_GNUC_NORETURN;
 static void jpeg_thumbnailer_create (TumblerAbstractThumbnailer *thumbnailer,
  GCancellable   *cancellable,
  TumblerFileInfo*info);
@@ -666,17 +667,6 @@ tvtj_jpeg_load_thumbnail (const JOCTET *content,
 
 
 static void
-free_image_data (TumblerImageData *data)
-{
-  if (data == NULL)
-return;
-
-  /* TODO */
-}
-
-
-
-static void
 jpeg_thumbnailer_create (TumblerAbstractThumbnailer *thumbnailer,
  GCancellable   *cancellable,
  TumblerFileInfo*info)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-01-07 Thread Jannis Pohlmann
Updating annotated tag refs/tags/tumbler-0.1.1
 as new annotated tag
 to a2cdff342bf8c0c9887389ca6dfdbf947563acf2 (tag)
   succeeds tumbler-0.1.0
  tagged by Jannis Pohlmann jan...@xfce.org
 on 2010-01-07 13:47 +

Daniel Nylander (1):
  l10n: Swedish translation added

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

Jannis Pohlmann (12):
  Update usage of AM_INIT_AUTOMAKE().
  Remove redundant tumbler_file_info_load() check.
  Fix invalid unrefs in the pixbuf thumbnailer plugin.
  Update TumblerError enum and its usage.
  Fix invalid unrefs in the font thumbnailer.
  Add a fast JPEG thumbnailer with EXIF thumbnail support.
  Add something to the TODO list.
  Remove tumbler.pot as it is no longer needed.
  Report unsupported flavors back to clients via an error signal.
  Remove unused function, fix noreturn compiler error.
  (Hopefully) fix the format string for guint64.
  Release 0.1.1!

Leandro Regueiro (1):
  l10n: Updates to Galician (gl) translation

Masato Hashimoto (2):
  l10n: Updates to Japanese (ja) translation
  l10n: Updates to Japanese (ja) translation

Per Kongstad (1):
  l10n: Updates to Danish (da) translation

Sergio Marques (1):
  l10n: Updates to Portuguese (pt) translation

Xu Meihong (1):
  l10n: Updates to Chinese (China) (zh_CN) translation

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


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

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 7eac82f484059fb29a2019118937ba42600665b7 (commit)
   from 7102be6ee46a4ed226ae5ee984f4448f433b2bb9 (commit)

commit 7eac82f484059fb29a2019118937ba42600665b7
Author: Masato Hashimoto cabezon.hashim...@gmail.com
Date:   Thu Jan 7 14:51:51 2010 +0100

l10n: Updates to Japanese (ja) translation

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

 po/ja.po |  381 --
 1 files changed, 198 insertions(+), 183 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index b1bba2d..11a9b7b 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,8 +7,8 @@ msgid 
 msgstr 
 Project-Id-Version: Midori 0.1.9\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-01-06 15:25+0900\n
-PO-Revision-Date: 2010-01-05 14:51+0900\n
+POT-Creation-Date: 2010-01-07 22:50+0900\n
+PO-Revision-Date: 2010-01-07 22:47+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
@@ -20,9 +20,9 @@ msgstr 
 msgid Lightweight web browser
 msgstr 軽量級ウェブブラウザ
 
-#: ../data/midori.desktop.in.h:2 ../midori/main.c:1507 ../midori/main.c:1709
-#: ../midori/main.c:1717 ../midori/main.c:1728
-#: ../midori/midori-websettings.c:294
+#: ../data/midori.desktop.in.h:2 ../midori/main.c:1535 ../midori/main.c:1737
+#: ../midori/main.c:1745 ../midori/main.c:1756
+#: ../midori/midori-websettings.c:296
 msgid Midori
 msgstr Midori
 
@@ -108,12 +108,12 @@ msgstr ブックマークを保存できませんでした。%s
 msgid The trash couldn't be saved. %s
 msgstr ゴミ箱を保存できませんでした。%s
 
-#: ../midori/main.c:1018 ../midori/main.c:1190
+#: ../midori/main.c:1018 ../midori/main.c:1221
 #, c-format
 msgid The session couldn't be saved. %s
 msgstr セッションは保存できませんでした。%s
 
-#: ../midori/main.c:1224
+#: ../midori/main.c:1255
 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.
@@ -122,127 +122,127 @@ msgstr 
 ようであれば、問題解決のために以下のオプションのいずれかを試してみてくださ
 い。
 
-#: ../midori/main.c:1239
+#: ../midori/main.c:1270
 msgid Modify _preferences
 msgstr 設定を変更する(_P)
 
-#: ../midori/main.c:1243
+#: ../midori/main.c:1274
 msgid Reset the last _session
 msgstr 最後のセッションをリセットする(_S)
 
-#: ../midori/main.c:1248
+#: ../midori/main.c:1279
 msgid Disable all _extensions
 msgstr すべてのエクステンションを無効にする(_E)
 
-#: ../midori/main.c:1411 ../midori/main.c:1943
+#: ../midori/main.c:1439 ../midori/main.c:1971
 #, c-format
 msgid The session couldn't be loaded: %s\n
 msgstr セッションを読み込めませんでした: %s\n
 
-#: ../midori/main.c:1507
+#: ../midori/main.c:1535
 msgid No filename specified
 msgstr ファイル名が指定されていません
 
-#: ../midori/main.c:1530
+#: ../midori/main.c:1558
 msgid An unknown error occured.
 msgstr 未知のエラーが発生しました。
 
-#: ../midori/main.c:1562
+#: ../midori/main.c:1590
 #, c-format
 msgid Snapshot saved to: %s\n
 msgstr スナップショットを取得しました: %s\n
 
 # CLI --help
-#: ../midori/main.c:1622
+#: ../midori/main.c:1650
 msgid Run ADDRESS as a web application
 msgstr ADDRESS をウェブアプリケーションとして実行する
 
-#: ../midori/main.c:1622
+#: ../midori/main.c:1650
 msgid ADDRESS
 msgstr ADDRESS
 
 # CLI --help
-#: ../midori/main.c:1625
+#: ../midori/main.c:1653
 msgid Use FOLDER as configuration folder
 msgstr 設定フォルダとして FOLDER を使用する
 
-#: ../midori/main.c:1625
+#: ../midori/main.c:1653
 msgid FOLDER
 msgstr FOLDER
 
-#: ../midori/main.c:1628
+#: ../midori/main.c:1656
 msgid Show a diagnostic dialog
 msgstr 診断ダイアログを表示する
 
 # CLI --help
-#: ../midori/main.c:1630
+#: ../midori/main.c:1658
 msgid Run the specified filename as javascript
 msgstr 指定されたファイル名を javascript として実行する
 
 # CLI --help
-#: ../midori/main.c:1633
+#: ../midori/main.c:1661
 msgid Take a snapshot of the specified URI
 msgstr 指定された URI のスナップショットを取得する
 
 # CLI --help
-#: ../midori/main.c:1636
+#: ../midori/main.c:1664
 msgid Execute the specified command
 msgstr 指定されたコマンドを実行する
 
 # CLI --help
-#: ../midori/main.c:1638
+#: ../midori/main.c:1666
 msgid Display program version
 msgstr プログラムのバージョンを表示する
 
-#: ../midori/main.c:1640
+#: ../midori/main.c:1668
 msgid Addresses
 msgstr アドレス
 
-#: ../midori/main.c:1706
+#: ../midori/main.c:1734
 msgid [Addresses]
 msgstr [アドレス]
 
-#: ../midori/main.c:1729
+#: ../midori/main.c:1757
 msgid Please report comments, suggestions and bugs to:
 msgstr コメント、ご提案、またはバグの報告はこちらまでお願いします:
 
-#: ../midori/main.c:1731
+#: ../midori/main.c:1759
 msgid Check for new versions at:
 msgstr 新しいバージョンのチェックはこちら:
 
-#: ../midori/main.c:1814
+#: ../midori/main.c:1842
 msgid The specified configuration folder is invalid.
 msgstr 指定された設定フォルダが正しくありません。
 
-#: ../midori/main.c:1862
+#: ../midori/main.c:1890
 msgid An instance of Midori is already running but not responding.\n
 msgstr Midori のインスタンスはすでに実行中ですが応答がありません。\n
 
-#: ../midori/main.c:1910
+#: ../midori/main.c:1938
 #, c-format
 msgid The search engines couldn't be loaded. %s\n
 msgstr 検索エンジンを読み込めませんでした。%s\n
 
-#: ../midori/main.c:1928
+#: ../midori/main.c:1956
 #, c-format
 msgid 

[Xfce4-commits] thunar:jannis/thunar-vfs-thumbnailer Deleting branch jannis/thunar-vfs-thumbnailer

2010-01-07 Thread well, not really
Deleting branch refs/heads/jannis/thunar-vfs-thumbnailer

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


[Xfce4-commits] thunar:jannis/thunar-vfs-thumbnailer Creating branch jannis/thunar-vfs-thumbnailer

2010-01-07 Thread Jannis Pohlmann
Updating branch refs/heads/jannis/thunar-vfs-thumbnailer
 as new branch
 to ebd7367ff194def9986fe6f63e52618feb22bfff (commit)

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

  refs/heads/jannis/thunar-vfs-thumbnailer

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] thunar:jannis/thunar-vfs-thumbnailer Squashme: A bit more work done here, moved things around.

2010-01-07 Thread Jannis Pohlmann
Updating branch refs/heads/jannis/thunar-vfs-thumbnailer
 to ebd7367ff194def9986fe6f63e52618feb22bfff (commit)
   from 8e2e0f6f94d5ea57d29f6bb3aa6e35d3dd9955d9 (commit)

commit ebd7367ff194def9986fe6f63e52618feb22bfff
Author: Jannis Pohlmann jan...@xfce.org
Date:   Thu Jan 7 14:52:56 2010 +0100

Squashme: A bit more work done here, moved things around.

 Makefile.am|1 +
 configure.in.in|7 ++--
 .../Makefile.am|0
 .../thunar-vfs-thumbnailer-plugin.c|0
 .../thunar-vfs-thumbnailer-provider.c  |8 +++--
 .../thunar-vfs-thumbnailer-provider.h  |0
 .../thunar-vfs-thumbnailer.c   |   32 
 .../thunar-vfs-thumbnailer.h   |0
 tumbler-plugins/Makefile.am|6 
 9 files changed, 41 insertions(+), 13 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 18e2c9c..bd6d07b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -8,6 +8,7 @@ SUBDIRS =   
\
tdb \
thunarx \
thunar  \
+   thunar-vfs-thumbnailer  \
docs\
examples\
plugins
diff --git a/configure.in.in b/configure.in.in
index 4657081..4d41a64 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -119,8 +119,8 @@ dnl *** Check for standard headers ***
 dnl **
 AC_CHECK_HEADERS([ctype.h errno.h fcntl.h grp.h limits.h locale.h memory.h \
   paths.h pwd.h sched.h signal.h stdarg.h stdio.h stdlib.h \
-  string.h sys/mman.h sys/stat.h sys/time.h sys/types.h \
-  sys/uio.h sys/wait.h time.h])
+  string.h sys/mman.h sys/resource.h sys/stat.h sys/time.h \
+  sys/types.h sys/uio.h sys/wait.h time.h])
 
 dnl 
 dnl *** Check for standard functions ***
@@ -287,8 +287,7 @@ thunar/Makefile
 thunarx/Makefile
 thunarx/thunarx-2.pc
 thunarx/thunarx-config.h
-tumbler-plugins/Makefile
-tumbler-plugins/thunar-vfs-thumbnailer/Makefile
+thunar-vfs-thumbnailer/Makefile
 ])
 
 dnl ***
diff --git a/tumbler-plugins/thunar-vfs-thumbnailer/Makefile.am 
b/thunar-vfs-thumbnailer/Makefile.am
similarity index 100%
rename from tumbler-plugins/thunar-vfs-thumbnailer/Makefile.am
rename to thunar-vfs-thumbnailer/Makefile.am
diff --git 
a/tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-plugin.c 
b/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-plugin.c
similarity index 100%
rename from 
tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-plugin.c
rename to thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-plugin.c
diff --git 
a/tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.c 
b/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.c
similarity index 91%
rename from 
tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.c
rename to thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.c
index 86cd591..40ec66f 100644
--- a/tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.c
+++ b/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.c
@@ -105,12 +105,14 @@ thunar_vfs_thumbnailer_provider_get_thumbnailers 
(TumblerThumbnailerProvider *pr
 {
   ThunarVfsThumbnailer *thumbnailer;
   GList*thumbnailers = NULL;
-  const gchar  *uri_schemes[] = { NULL, };
+  const gchar  *uri_schemes[] = { file, NULL };
   const gchar  *mime_types[] = { NULL, };
 
   /* create the pixbuf thumbnailer */
-  thumbnailer = g_object_new (TYPE_THUNAR_VFS_THUMBNAILER, mime-types, 
mime_types,
-  uri-schemes, uri_schemes, NULL);
+  thumbnailer = g_object_new (TYPE_THUNAR_VFS_THUMBNAILER, 
+  mime-types, mime_types,
+  uri-schemes, uri_schemes, 
+  NULL);
 
   /* add the thumbnailer to the list */
   thumbnailers = g_list_append (thumbnailers, thumbnailer);
diff --git 
a/tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.h 
b/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.h
similarity index 100%
rename from 
tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.h
rename to thunar-vfs-thumbnailer/thunar-vfs-thumbnailer-provider.h
diff --git a/tumbler-plugins/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer.c 
b/thunar-vfs-thumbnailer/thunar-vfs-thumbnailer.c
similarity index 95%
rename 

[Xfce4-commits] thunar:jannis/thunar-vfs-thumbnailer Squashme: Initial work on a ThunarVFS thumbnailer plugin for tumbler.

2010-01-07 Thread Jannis Pohlmann
Updating branch refs/heads/jannis/thunar-vfs-thumbnailer
 to 8e2e0f6f94d5ea57d29f6bb3aa6e35d3dd9955d9 (commit)
   from 94d0db327df77c2dbfb34622cc6ae3191f76a879 (commit)

commit 8e2e0f6f94d5ea57d29f6bb3aa6e35d3dd9955d9
Author: Jannis Pohlmann jan...@xfce.org
Date:   Sat Dec 19 13:51:59 2009 +0100

Squashme: Initial work on a ThunarVFS thumbnailer plugin for tumbler.

Much of this will have to be replaced. We also need a way for plugins to
notify the Tumbler registry when new URI schemes and MIME types are
supported.

 configure.in.in|   53 ++-
 {docs/reference = tumbler-plugins}/Makefile.am|6 +-
 tumbler-plugins/thunar-vfs-thumbnailer/Makefile.am |   61 ++
 .../thunar-vfs-thumbnailer-plugin.c|   91 +++
 .../thunar-vfs-thumbnailer-provider.c  |  119 
 .../thunar-vfs-thumbnailer-provider.h  |   43 ++
 .../thunar-vfs-thumbnailer.c   |  600 
 .../thunar-vfs-thumbnailer.h   |   43 ++
 8 files changed, 993 insertions(+), 23 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 8db5cf7..4657081 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -118,16 +118,17 @@ dnl **
 dnl *** Check for standard headers ***
 dnl **
 AC_CHECK_HEADERS([ctype.h errno.h fcntl.h grp.h limits.h locale.h memory.h \
-  paths.h pwd.h sched.h signal.h stdarg.h stdlib.h string.h \
-  sys/mman.h sys/stat.h sys/time.h sys/types.h sys/uio.h \
-  sys/wait.h time.h])
+  paths.h pwd.h sched.h signal.h stdarg.h stdio.h stdlib.h \
+  string.h sys/mman.h sys/stat.h sys/time.h sys/types.h \
+  sys/uio.h sys/wait.h time.h])
 
 dnl 
 dnl *** Check for standard functions ***
 dnl 
 AC_FUNC_MMAP()
-AC_CHECK_FUNCS([localeconv mkdtemp pread pwrite sched_yield setgroupent \
-setpassent strcoll strlcpy strptime symlink])
+AC_CHECK_FUNCS([localeconv mkdtemp posix_madvise pread pwrite sched_yield \
+setgroupent setpassent setpriority strcoll strlcpy strptime \
+symlink])
 
 dnl **
 dnl *** Check for i18n support ***
@@ -157,8 +158,13 @@ dnl **
 XDT_CHECK_OPTIONAL_PACKAGE([GIO_UNIX], [gio-unix-2.0],
[2.18.0], [gio-unix], [GIO UNIX features])
 
-dnl ***
-dnl *** Optional support for gconf (GNOME thumbnailers) ***
+dnl **
+dnl *** Optional tumbler plugin for ThunarVFS thumbnailers ***
+dnl **
+XDT_CHECK_OPTIONAL_PACKAGE([TUMBLER], [tumbler-1], 
+   [0.1.0], [tumbler], 
+   [Tumbler plugin for ThunarVFS thumbnailers])
+
 dnl **
 dnl *** Optional support for D-BUS ***
 dnl **
@@ -281,6 +287,8 @@ thunar/Makefile
 thunarx/Makefile
 thunarx/thunarx-2.pc
 thunarx/thunarx-config.h
+tumbler-plugins/Makefile
+tumbler-plugins/thunar-vfs-thumbnailer/Makefile
 ])
 
 dnl ***
@@ -290,28 +298,33 @@ echo
 echo Build Configuration:
 echo
 if test x$DBUS_FOUND = xyes; then
-echo * D-BUS support: yes
+echo * D-BUS support: yes
+else
+echo * D-BUS support: no
+fi
+if test x$TUMBLER_FOUND = xyes; then
+echo * Tumbler plugin for ThunarVFS thumbnailers: yes
 else
-echo * D-BUS support: no
+echo * Tumbler plugin for ThunarVFS thumbnailers: no
 fi
 if test x$GIO_UNIX_FOUND = xyes; then
-echo * GIO UNIX features: yes
+echo * GIO UNIX features: yes
 else
-echo * GIO UNIX features: no
+echo * GIO UNIX features: no
 fi
 if test x$LIBSTARTUP_NOTIFICATION_FOUND = xyes; then
-echo * Startup Notification:  yes
+echo * Startup Notification:  yes
 else
-echo * Startup Notification:  no
+echo * Startup Notification:  no
 fi
-echo * Debug Support: $enable_debug
-echo * Generate Documentation:$enable_gen_doc
+echo * Debug Support: $enable_debug
+echo * Generate Documentation:$enable_gen_doc
 echo
 echo Additional Plugins:
 echo
-echo * Advanced Properties:   $ac_bm_thunar_plugin_apr
-echo * Simple Builting Renamers:  $ac_bm_thunar_plugin_sbr
-echo * Trash Panel Applet:$ac_bm_thunar_plugin_tpa
-echo * User Customizable Actions: $ac_bm_thunar_plugin_uca
-echo * Wallpaper support: $ac_bm_thunar_plugin_wallpaper
+echo * Advanced Properties:   

[Xfce4-commits] tumbler:master l10n: Updates to Danish (da) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 6ad42432e25b4bd2f3e9c079ab3b5d054a764921 (commit)
   from 5860021731a2a7a52b196c1670547616755f5902 (commit)

commit 6ad42432e25b4bd2f3e9c079ab3b5d054a764921
Author: Per Kongstad p_kongs...@op.pl
Date:   Thu Jan 7 16:00:32 2010 +0100

l10n: Updates to Danish (da) translation

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

 po/da.po |   28 
 1 files changed, 12 insertions(+), 16 deletions(-)

diff --git a/po/da.po b/po/da.po
index 2173f78..c6a0b08 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2009 Jannis Pohlmann jan...@xfce.org
 # This file is distributed under the same license as the Tumbler package.
 # Per Kongstad p_kongs...@op.pl, 2009.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: Tumbler 1.0.1\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-01-07 14:45+0100\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-07 11:00+\n
 PO-Revision-Date: 2009-12-19 22:24+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Danish da...@dansk-gruppen.dk\n
@@ -15,8 +15,8 @@ msgstr 
 Content-Type: text/plain; charset=utf-8\n
 Content-Transfer-Encoding: 8bit\n
 X-Poedit-Language: Danish\n
-X-Poedit-Country: Denmark\n
 X-Poedit-SourceCharset: utf-8\n
+X-Poedit-Country: Denmark\n
 
 #: ../tumblerd/tumbler-cache-service.c:383
 #, c-format
@@ -34,10 +34,6 @@ msgstr Ingen miniaturetjeneste tilgængelig for \%s\
 msgid Another generic thumbnailer is already running
 msgstr En anden generisk miniaturetjeneste kører allerede
 
-#: ../tumblerd/tumbler-service.c:704
-msgid Unsupported thumbnail flavor requested
-msgstr 
-
 #: ../tumblerd/tumbler-specialized-thumbnailer.c:461
 msgid Failed to call the specialized thumbnailer: timeout
 msgstr Kunne ikke kalde den specialiserede miniature: tidsudløb
@@ -60,12 +56,8 @@ msgstr Misdannet sektion \%s\ i filen \%s\: %s
 
 #: ../tumblerd/tumbler-manager.c:526
 #, c-format
-msgid 
-Malformed section \%s\ in file \%s\: Mismatch between section name and 
-UriScheme/MimeType
-msgstr 
-Misdannet sektion \%s\ i filen \%s\: Der er forskel mellem sektionsnavn 
-og Uri-skema/MIME-type
+msgid Malformed section \%s\ in file \%s\: Mismatch between section name 
and UriScheme/MimeType
+msgstr Misdannet sektion \%s\ i filen \%s\: Der er forskel mellem 
sektionsnavn og Uri-skema/MIME-type
 
 #: ../tumblerd/tumbler-manager.c:886 ../tumblerd/tumbler-manager.c:900
 #: ../tumblerd/tumbler-manager.c:914
@@ -206,8 +198,8 @@ msgstr Kunne ikke indstille til tegntilknytningen: %s
 msgid Could not render glyphs: %s
 msgstr Kunne ikke rendere glyphs: %s
 
-#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:743
-#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:781
+#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:753
+#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:791
 #, c-format
 msgid Thumbnail could not be inferred from file contents
 msgstr Miniature kunne ikke blive bestemt ud fra filindholdet
@@ -225,6 +217,10 @@ msgstr Initialiserer udvidelsesmodulet Tumbler XDG cache
 msgid Shutting down the Tumbler XDG cache plugin
 msgstr Lukker udvidelsesmodulet Tumbler XDG cache ned
 
+#: ../tumblerd/tumbler-service.c:704
+msgid Unsupported thumbnail flavor requested
+msgstr Anmodet ikke understøttet miniature
+
 #~ msgid Normal
 #~ msgstr Normal
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] gigolo:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 54d6562ec38013b99b617162ca0907a30bdabddc (commit)
   from 06bb7de30c40f45df9d2ff39f198d803120e15dc (commit)

commit 54d6562ec38013b99b617162ca0907a30bdabddc
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:48:40 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |   18 +-
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 5e05091..9eda88b 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,8 +1,8 @@
 # Galician translation of gigolo
-# Copyright (C) 2009 Leandro Regueiro.
+# Copyright (C) 2009, 2010 Leandro Regueiro.
 # This file is distributed under the same license as the Xfce package.
 #
-# Leandro Regueiro leandro DOT regueiro AT gmail DOT com, 2009.
+# Leandro Regueiro leandro DOT regueiro AT gmail DOT com, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -10,9 +10,9 @@
 msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-14 19:41+0100\n
-PO-Revision-Date: 2009-12-18 13:42+0100\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-05 17:00+\n
+PO-Revision-Date: 2010-01-06 12:25+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -100,8 +100,8 @@ msgid A simple frontend to easily connect to remote 
filesystems
 msgstr Unha sinxela interface para conectar facilmente a sistemas de 
ficheiros remotos
 
 #: ../src/window.c:422
-msgid Copyright 2008-2009 Enrico Tröger
-msgstr Copyright 2008-2009 Enrico Tröger
+msgid Copyright 2008-2010 Enrico Tröger
+msgstr Copyright 2008-2010 Enrico Tröger
 
 #: ../src/window.c:425
 msgid translator-credits
@@ -467,11 +467,11 @@ msgstr Interface
 
 #: ../src/preferencesdialog.c:406
 msgid _Save window position and geometry
-msgstr _Gardar a posición e maila xeometría da ventá
+msgstr _Gardar a posición e maila xeometría da fiestra
 
 #: ../src/preferencesdialog.c:407
 msgid Saves the window position and geometry and restores it at the start
-msgstr Garda a posición e xeometría da ventá e restáuraa ó volver iniciar
+msgstr Garda a posición e a xeometría da fiestra e restáuraa ao volver 
iniciar
 
 #: ../src/preferencesdialog.c:410
 msgid Show status _icon in the Notification Area
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] mousepad:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to cf5da43cdbd3b691fe7068a633d081f2ee3b44a9 (commit)
   from bbea33ed75e8df70cd1c21957dd2a76af7d2b333 (commit)

commit cf5da43cdbd3b691fe7068a633d081f2ee3b44a9
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:49:24 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 7a22bd6..1fe7ec1 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,8 +1,8 @@
 # Galician translation of mousepad
-# Copyright (C) 2006, 2008, 2009 Leandro Regueiro
+# Copyright (C) 2006, 2008, 2009, 2010 Leandro Regueiro
 # This file is distributed under the same license as the xfce package.
 #
-# Leandro Regueiro leandro.regue...@gmail.com, 2006, 2008, 2009.
+# Leandro Regueiro leandro.regue...@gmail.com, 2006, 2008, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -12,7 +12,7 @@ msgstr 
 Project-Id-Version: mousepad 0.2.16\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2007-01-20 12:34+0100\n
-PO-Revision-Date: 2009-08-19 12:35+0100\n
+PO-Revision-Date: 2010-01-06 12:31+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -66,7 +66,7 @@ msgstr /Ficheiro/_Novo
 
 #: ../src/menu.c:66
 msgid /File/New _Window
-msgstr /Ficheiro/Nova _ventá
+msgstr /Ficheiro/Nova _fiestra
 
 #: ../src/menu.c:69
 msgid /File/_Open...
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-clipman-plugin:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to f1410686cf7ac9ab2a9fc4a54304398a97fed359 (commit)
   from d06e35ee62a0477adc84b5d7aeb29e348bb0b813 (commit)

commit f1410686cf7ac9ab2a9fc4a54304398a97fed359
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:48:16 2010 +0100

l10n: Updates to Galician (gl) translation

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

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

diff --git a/po-doc/gl.po b/po-doc/gl.po
index f8e6162..f9f25bd 100644
--- a/po-doc/gl.po
+++ b/po-doc/gl.po
@@ -11,7 +11,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-clipman master\n
 POT-Creation-Date: 2009-11-15 18:30+0100\n
-PO-Revision-Date: 2009-12-25 15:15+0100\n
+PO-Revision-Date: 2010-01-07 11:03+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -89,7 +89,7 @@ msgstr Anatomía dun Portarretallos
 
 #: ../docs/manual/C/xfce4-clipman-plugin.xml.in:64(para)
 msgid In X11 (all Unix platforms) there are by default two clipboards to 
exchange any data between the windows. A default clipboard which is modified by 
manual copies (for instance when you select a file and press the copy button), 
and there is a primary clipboard which is modified by selections (for instance 
when you select text in a field).
-msgstr En X11 (tódalas plataformas Unix) hai por defecto dous portarretallos 
para intercambiar calquera dato entre as xanelas. Hai un portarretallos 
predeterminado que se modifica mediante copias manuais (por exemplo cando 
selecciona un ficheiro e preme no botón copiar), e hai un portarretallos 
primario que se modifica cas seleccións (por exemplo cando selecciona texto dun 
campo).
+msgstr En X11 (tódalas plataformas Unix) hai por defecto dous portarretallos 
para intercambiar calquera dato entre as fiestras. Hai un portarretallos 
predeterminado que se modifica mediante copias manuais (por exemplo cando 
selecciona un ficheiro e preme no botón copiar), e hai un portarretallos 
primario que se modifica cas seleccións (por exemplo cando selecciona texto dun 
campo).
 
 #: ../docs/manual/C/xfce4-clipman-plugin.xml.in:71(para)
 msgid @PACKAGE_NAME@ handles only the default clipboard, but optionnaly it 
can also notice the selections. When it is handling the selections, the default 
clipboard will always be synced with it and contain the same data. By this 
meaning you can paste with the keyboard what you select on screen.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfcegui4:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 06f714a65afa9c994bdccd6015d8f07ad4411cbd (commit)
   from 254aa03da84f5e276a65bc7d97b9d5230b1f8c25 (commit)

commit 06f714a65afa9c994bdccd6015d8f07ad4411cbd
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:49:39 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |   40 
 1 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 8af460d..ecadbe2 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,10 +1,10 @@
 # Galician translation of libxfcegui4
-# Copyright (C) 2008, 2009 Leandro Regueiro
+# Copyright (C) 2008, 2009, 2010 Leandro Regueiro
 # This file is distributed under the same license as the xfce package.
 #
 # Ricardo Domínguez Rouco rikla...@gmail.com, 2006.
 # Miguel Anxo Bouzada mbouz...@gmail.com, 2008.
-# Leandro Regueiro leandro.regue...@gmail.com, 2008, 2009.
+# Leandro Regueiro leandro.regue...@gmail.com, 2008, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -12,9 +12,9 @@
 msgid 
 msgstr 
 Project-Id-Version: libxfcegui4 4.4.0\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-01-06 01:12+0100\n
-PO-Revision-Date: 2009-05-02 16:25+0100\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-05 17:04+\n
+PO-Revision-Date: 2010-01-06 12:30+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -24,7 +24,7 @@ msgstr 
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:53
 msgid This shortcut is already being used for another window manager action. 
Which action do you want to use?
-msgstr Este atallo xa se está usando para outra acción do xestor de ventás. 
Que acción desexa usar?
+msgstr Este atallo xa se está usando para outra acción do xestor de fiestras. 
Que acción desexa usar?
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:54
 #: ../libxfce4kbd-private/xfce-shortcuts.c:57
@@ -52,51 +52,51 @@ msgstr Manter '%s'
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:62
 msgid This shortcut is already being used by a window manager action. Which 
action do you want to use?
-msgstr Este atallo xa se está usando para unha acción do xestor de ventás. 
Que acción desexa usar?
+msgstr Este atallo xa se está usando para unha acción do xestor de fiestras. 
Que acción desexa usar?
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:63
 msgid Keep the window manager action
-msgstr Manter a acción do xestor de ventás
+msgstr Manter a acción do xestor de fiestras
 
-#: ../libxfce4kbd-private/xfce-shortcuts.c:93
+#: ../libxfce4kbd-private/xfce-shortcuts.c:96
 #, c-format
 msgid Conflicting actions for %s
 msgstr Acción conflitiva para %s
 
-#: ../libxfce4kbd-private/xfce-shortcuts.c:126
+#: ../libxfce4kbd-private/xfce-shortcuts.c:129
 msgid This shortcut is already being used for something else.
 msgstr Este atallo xa se está usando para outra cousa.
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:248
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:251
 msgid Window Manager Action Shortcut
-msgstr Atallo de acción do xestor de ventás
+msgstr Atallo de acción do xestor de fiestras
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:249
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:259
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:252
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:262
 msgid Action:
 msgstr Acción:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:253
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:256
 msgid Command Shortcut
 msgstr Atallo de comando
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:254
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:257
 msgid Command:
 msgstr Comando:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:258
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:261
 msgid Shortcut
 msgstr Atallo
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:299
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:302
 msgid Shortcut:
 msgstr Atallo:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:344
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:347
 msgid Could not grab the keyboard.
 msgstr Non se puido obter o teclado.
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:365
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:368
 #, c-format
 msgid span size='large'b%s/b/span
 msgstr span size='large'b%s/b/span
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4ui:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to c11d9b334fe386df7274ad0a6eea6bbbff368001 (commit)
   from e1b049653c4553c6b55c152f64ebbd50e2ef03c5 (commit)

commit c11d9b334fe386df7274ad0a6eea6bbbff368001
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:48:57 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |   47 ++-
 1 files changed, 14 insertions(+), 33 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 235d8a1..b5afdb0 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,8 +1,8 @@
 # Galician translation of libxfce4ui
-# Copyright (C) 2008, 2009 Leandro Regueiro
+# Copyright (C) 2008, 2009, 2010 Leandro Regueiro
 # This file is distributed under the same license as the xfce package.
 #
-# Leandro Regueiro leandro.regue...@gmail.com, 2008, 2009.
+# Leandro Regueiro leandro.regue...@gmail.com, 2008, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -10,9 +10,9 @@
 msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-12-18 15:10+0100\n
-PO-Revision-Date: 2009-11-13 13:58+0100\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-05 17:03+\n
+PO-Revision-Date: 2010-01-06 12:28+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -71,12 +71,8 @@ msgid Session manager did not return a valid client id
 msgstr O xestor de sesións non devolveu un id de cliente válido
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:52
-msgid 
-This shortcut is already being used for another window manager action. Which 
-action do you want to use?
-msgstr 
-Este atallo xa está sendo usado por unha acción doutro xestor de ventás. Que 
-acción desexa usar?
+msgid This shortcut is already being used for another window manager action. 
Which action do you want to use?
+msgstr Este atallo xa está sendo usado por unha acción doutro xestor de 
fiestras. Que acción desexa usar?
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:53
 #: ../libxfce4kbd-private/xfce-shortcuts.c:56
@@ -93,11 +89,8 @@ msgstr Manter o outro
 #: ../libxfce4kbd-private/xfce-shortcuts.c:55
 #: ../libxfce4kbd-private/xfce-shortcuts.c:58
 #, c-format
-msgid 
-This shortcut is already being used for the command '%s'. Which action do 
-you want to use?
-msgstr 
-Este atallo xa está sendo usado polo comando '%s'. Que acción desexa usar?
+msgid This shortcut is already being used for the command '%s'. Which action 
do you want to use?
+msgstr Este atallo xa está sendo usado polo comando '%s'. Que acción desexa 
usar?
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:56
 #: ../libxfce4kbd-private/xfce-shortcuts.c:59
@@ -106,16 +99,12 @@ msgid Keep '%s'
 msgstr Manter '%s'
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:61
-msgid 
-This shortcut is already being used by a window manager action. Which action 
-do you want to use?
-msgstr 
-Este atallo está sendo usado por unha acción do xestor de ventás. Que acción 
-desexa usar?
+msgid This shortcut is already being used by a window manager action. Which 
action do you want to use?
+msgstr Este atallo está sendo usado por unha acción do xestor de fiestras. 
Que acción desexa usar?
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:62
 msgid Keep the window manager action
-msgstr Manter a acción do xestor de ventás
+msgstr Manter a acción do xestor de fiestras
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:95
 #, c-format
@@ -128,7 +117,7 @@ msgstr Este atallo xa está sendo usado por algo.
 
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:207
 msgid Window Manager Action Shortcut
-msgstr Atallo de acción do xestor de ventás
+msgstr Atallo de acción do xestor de fiestras
 
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:208
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:218
@@ -169,32 +158,24 @@ msgstr Xfce 4 Widgets
 
 #~ msgid span size='large'b%s/b/span
 #~ msgstr span size='large'b%s/b/span
-
 #~ msgid File is not a valid .desktop file
 #~ msgstr O ficheiro non é un ficheiro .desktop válido
-
 #~ msgid Unrecognized desktop file Version '%s'
 #~ msgstr Non se recoñece a versión '%s' do ficheiro .desktop
-
 #~ msgid Starting %s
 #~ msgstr Iniciando %s
-
 #~ msgid Application does not accept documents on command line
 #~ msgstr A aplicación non acepta documentos na liña de comandos
-
 #~ msgid Unrecognized launch option: %d
 #~ msgstr Non se recoñece a opción de inicio: %d
-
 #~ msgid Can't pass document URIs to a 'Type=Link' desktop entry
 #~ msgstr 
 #~ Non se poden pasar URIs de documento a unha entrada de escritorio de 
 #~ 'Type=Link'
-
 #~ msgid Not a launchable item
 #~ msgstr Non é un elemento executable
-
 #~ msgid Specify file containing saved configuration
 #~ msgstr Especifique o ficheiro que 

[Xfce4-commits] terminal:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 1749a693983c8e5459d69d5bce9f027d9249fdc8 (commit)
   from 73b2556c30f74ddfcfa6e029a42fd503cdcca446 (commit)

commit 1749a693983c8e5459d69d5bce9f027d9249fdc8
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:50:49 2010 +0100

l10n: Updates to Galician (gl) translation

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

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

diff --git a/po/gl.po b/po/gl.po
index 82b617b..c7d89ef 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -12,7 +12,7 @@ msgstr 
 Project-Id-Version: Terminal 0.2.10\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-30 12:57+\n
-PO-Revision-Date: 2010-01-03 13:03+0100\n
+PO-Revision-Date: 2010-01-07 11:01+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -22,7 +22,7 @@ msgstr 
 
 #: ../terminal/main.c:48
 msgid Usage:
-msgstr Modo e uso:
+msgstr Modo de uso:
 
 #: ../terminal/main.c:48
 msgid OPTION
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to bfb32abdc9125fa8e1e3cc30624922e453014d04 (commit)
   from 6b7ee9725795fdf00be015d704a8852dd2e73d4f (commit)

commit bfb32abdc9125fa8e1e3cc30624922e453014d04
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:50:30 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |   14 +++---
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index e088b18..1df3dc8 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,9 +1,9 @@
 # Galician translation of xfce4-session
-# Copyright (C) 2008-2009 Leandro Regueiro
+# Copyright (C) 2008, 2009, 2010 Leandro Regueiro
 # This file is distributed under the same license as the xfce package.
 #
 # Iván Seoane Pardo talivan.i...@gmail.com, 2006.
-# Leandro Regueiro leandro.regue...@gmail.com, 2008, 2009.
+# Leandro Regueiro leandro.regue...@gmail.com, 2008, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -11,9 +11,9 @@
 msgid 
 msgstr 
 Project-Id-Version: xfce4-session 4.4.0\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-09-28 10:33+0200\n
-PO-Revision-Date: 2009-12-16 17:44+0100\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-05 17:03+\n
+PO-Revision-Date: 2010-01-06 12:35+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -693,7 +693,7 @@ msgstr Iniciando a barra de tarefas
 
 #: ../xfce4-session/xfsm-startup.c:123
 msgid Starting the Window Manager
-msgstr Iniciando o xestor de xanelas
+msgstr Iniciando o xestor de fiestras
 
 #: ../xfce4-session/xfsm-startup.c:127
 msgid Starting the Gnome Terminal Emulator
@@ -977,7 +977,7 @@ msgstr Estas aplicacións son parte da sesión actual, e 
pódense gardar cando
 
 #: ../settings/xfce4-session-settings.glade.h:31
 msgid Your session is being saved.  If you do not wish to wait, you may close 
this window.
-msgstr Estase gardando a súa sesión. Se non desexa agardar pode pechar esta 
ventá.
+msgstr Estase gardando a súa sesión. Se non desexa agardar pode pechar esta 
fiestra.
 
 #: ../settings/xfce4-session-settings.glade.h:32
 msgid _Display chooser on login
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] orage:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 56ff88fa8e00316f80d14b4ff0461a26defdb311 (commit)
   from b67b2a2ace4a2df063f389ccc9530b3460f2 (commit)

commit 56ff88fa8e00316f80d14b4ff0461a26defdb311
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:50:09 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |  357 ++
 1 files changed, 197 insertions(+), 160 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 7927b68..406af43 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,8 +1,8 @@
-# Galician translation of xfcalendar
-# Copyright (C) 2008-2009 Leandro Regueiro
+# Galician translation of orage
+# Copyright (C) 2008, 2009, 2010 Leandro Regueiro
 # This file is distributed under the same license as the xfce package.
 #
-# Leandro Regueiro leandro.regue...@gmail.com, 2006, 2008, 2009.
+# Leandro Regueiro leandro.regue...@gmail.com, 2006, 2008, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -12,7 +12,7 @@ msgstr 
 Project-Id-Version: 0.01\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-12-30 17:07+0200\n
-PO-Revision-Date: 2009-12-18 18:21+0100\n
+PO-Revision-Date: 2010-01-06 12:34+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -53,11 +53,11 @@ msgid adjust to change hour
 msgstr axustar para cambiar a hora
 
 #: ../globaltime/globaltime.c:497
-msgid 
-adjust to change minute. Click arrows with button 2 to change only 1 minute.
+msgid adjust to change minute. Click arrows with button 2 to change only 1 
minute.
 msgstr 
 
-#: ../globaltime/gt_prefs.c:264 ../globaltime/gt_prefs.c:265
+#: ../globaltime/gt_prefs.c:264
+#: ../globaltime/gt_prefs.c:265
 #, fuzzy
 msgid NEW
 msgstr _Novo
@@ -75,7 +75,8 @@ msgstr Non é posible eliminar o último reloxo.
 msgid update this clock
 msgstr actualizar este reloxo
 
-#: ../globaltime/gt_prefs.c:520 ../globaltime/gt_prefs.c:1033
+#: ../globaltime/gt_prefs.c:520
+#: ../globaltime/gt_prefs.c:1033
 msgid add new empty clock
 msgstr engadir un novo reloxo baleiro
 
@@ -88,32 +89,29 @@ msgid delete this clock
 msgstr eliminar este reloxo
 
 #: ../globaltime/gt_prefs.c:538
-#, fuzzy
 msgid move this clock first
-msgstr Mover esta ventá á pantalla %s
+msgstr Mover este reloxo primeiro
 
 #: ../globaltime/gt_prefs.c:543
-#, fuzzy
 msgid move this clock left
-msgstr Mover o separador á esquerda
+msgstr Mover este reloxo á esquerda
 
 #: ../globaltime/gt_prefs.c:548
-#, fuzzy
 msgid move this clock right
-msgstr Mover o separador á dereita
+msgstr Mover este reloxo á dereita
 
 #: ../globaltime/gt_prefs.c:553
-#, fuzzy
 msgid move this clock last
-msgstr Mover esta ventá á pantalla %s
+msgstr Mover este reloxo de último
 
 #: ../globaltime/gt_prefs.c:561
 msgid set the timezone of this clock to be local timezone
 msgstr definir o fuso horario deste reloxo como o fuso horario local
 
-#: ../globaltime/gt_prefs.c:567 ../globaltime/gt_prefs.c:1041
+#: ../globaltime/gt_prefs.c:567
+#: ../globaltime/gt_prefs.c:1041
 msgid close window and exit
-msgstr pechar a ventá e saír
+msgstr pechar a fiestra e saír
 
 #: ../globaltime/gt_prefs.c:589
 #, fuzzy
@@ -142,7 +140,8 @@ msgid Text Formatting
 msgstr Formato do texto
 
 #. background-
-#: ../globaltime/gt_prefs.c:648 ../globaltime/gt_prefs.c:855
+#: ../globaltime/gt_prefs.c:648
+#: ../globaltime/gt_prefs.c:855
 msgid Background color:
 msgstr Cor de fondo:
 
@@ -150,22 +149,31 @@ msgstr Cor de fondo:
 msgid Click to change background colour for clock
 msgstr Prema para cambiar a cor de fondo do reloxo
 
-#: ../globaltime/gt_prefs.c:664 ../globaltime/gt_prefs.c:696
-#: ../globaltime/gt_prefs.c:728 ../globaltime/gt_prefs.c:761
-#: ../globaltime/gt_prefs.c:795 ../globaltime/gt_prefs.c:825
-#: ../globaltime/gt_prefs.c:871 ../globaltime/gt_prefs.c:904
-#: ../globaltime/gt_prefs.c:937 ../globaltime/gt_prefs.c:971
+#: ../globaltime/gt_prefs.c:664
+#: ../globaltime/gt_prefs.c:696
+#: ../globaltime/gt_prefs.c:728
+#: ../globaltime/gt_prefs.c:761
+#: ../globaltime/gt_prefs.c:795
+#: ../globaltime/gt_prefs.c:825
+#: ../globaltime/gt_prefs.c:871
+#: ../globaltime/gt_prefs.c:904
+#: ../globaltime/gt_prefs.c:937
+#: ../globaltime/gt_prefs.c:971
 msgid Use default
 msgstr Usar predeterminado
 
-#: ../globaltime/gt_prefs.c:669 ../globaltime/gt_prefs.c:701
-#: ../globaltime/gt_prefs.c:734 ../globaltime/gt_prefs.c:767
-#: ../globaltime/gt_prefs.c:801 ../globaltime/gt_prefs.c:831
+#: ../globaltime/gt_prefs.c:669
+#: ../globaltime/gt_prefs.c:701
+#: ../globaltime/gt_prefs.c:734
+#: ../globaltime/gt_prefs.c:767
+#: ../globaltime/gt_prefs.c:801
+#: ../globaltime/gt_prefs.c:831
 msgid Cross this to use default instead of selected value
 

[Xfce4-commits] xfdesktop:master l10n: Updates to Galician (gl) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to cc1c282b6d9789b09a523ebf408da8fcdc52d74d (commit)
   from 5a2bbf5e9ffa332f93673bc30354e483f62700cd (commit)

commit cc1c282b6d9789b09a523ebf408da8fcdc52d74d
Author: Leandro Regueiro leandro.regue...@gmail.com
Date:   Thu Jan 7 17:51:07 2010 +0100

l10n: Updates to Galician (gl) translation

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

 po/gl.po |  783 --
 1 files changed, 306 insertions(+), 477 deletions(-)

diff --git a/po/gl.po b/po/gl.po
index 3df9b77..13d59e4 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,8 +1,8 @@
 # Galician translation of xfdesktop
-# Copyright (C) 2006, 2008, 2009 Leandro Regueiro
+# Copyright (C) 2006, 2008, 2009, 2010 Leandro Regueiro
 # This file is distributed under the same license as the xfce package.
 #
-# Leandro Regueiro leandro.regue...@gmail.com, 2006, 2008, 2009.
+# Leandro Regueiro leandro.regue...@gmail.com, 2006, 2008, 2009, 2010.
 #
 # Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
 # colaborar connosco, podes atopar máis información en http://trasno.net
@@ -10,9 +10,9 @@
 msgid 
 msgstr 
 Project-Id-Version: xfdesktop 4.4.0\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2009-07-30 23:17-0700\n
-PO-Revision-Date: 2009-08-19 12:39+0100\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-05 17:04+\n
+PO-Revision-Date: 2010-01-06 12:38+0100\n
 Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
 Language-Team: Galician proxe...@trasno.net\n
 MIME-Version: 1.0\n
@@ -21,87 +21,87 @@ msgstr 
 Plural-Forms: nplurals=2; plural=(n!=1);\n
 
 # backdrop=fondo de escritorio
-#: ../common/xfdesktop-common.c:95
-#: ../common/xfdesktop-common.c:199
+#: ../common/xfdesktop-common.c:96
+#: ../common/xfdesktop-common.c:200
 #, c-format
 msgid Backdrop list file is not valid
 msgstr O ficheiro de lista de fondos de escritorio non é válido
 
-#: ../panel-plugin/desktop-menu-plugin.c:639
+#: ../panel-plugin/desktop-menu-plugin.c:669
 #, c-format
 msgid Unable to launch xfce4-menueditor: %s
 msgstr Non foi posible iniciar xfce4-menueditor: %s
 
-#: ../panel-plugin/desktop-menu-plugin.c:662
+#: ../panel-plugin/desktop-menu-plugin.c:692
 msgid Select Icon
 msgstr Seleccionar unha icona...
 
-#: ../panel-plugin/desktop-menu-plugin.c:664
+#: ../panel-plugin/desktop-menu-plugin.c:694
 msgid Select Menu File
 msgstr Seleccionar o ficheiro de menú
 
-#: ../panel-plugin/desktop-menu-plugin.c:691
+#: ../panel-plugin/desktop-menu-plugin.c:721
 msgid All Files
-msgstr Tódolos ficheiros
+msgstr Todos os ficheiros
 
-#: ../panel-plugin/desktop-menu-plugin.c:698
+#: ../panel-plugin/desktop-menu-plugin.c:728
 msgid Image Files
 msgstr Ficheiros de imaxe
 
-#: ../panel-plugin/desktop-menu-plugin.c:701
+#: ../panel-plugin/desktop-menu-plugin.c:731
 msgid Menu Files
 msgstr Ficheiros de menú
 
-#: ../panel-plugin/desktop-menu-plugin.c:726
+#: ../panel-plugin/desktop-menu-plugin.c:756
 #: ../panel-plugin/xfce4-menu.desktop.in.in.h:2
 msgid Xfce Menu
 msgstr Menú de Xfce
 
-#: ../panel-plugin/desktop-menu-plugin.c:738
+#: ../panel-plugin/desktop-menu-plugin.c:768
 msgid Button
 msgstr Botón
 
-#: ../panel-plugin/desktop-menu-plugin.c:751
+#: ../panel-plugin/desktop-menu-plugin.c:781
 msgid Button _title:
 msgstr _Título do botón:
 
-#: ../panel-plugin/desktop-menu-plugin.c:764
+#: ../panel-plugin/desktop-menu-plugin.c:794
 msgid _Show title in button
 msgstr Mo_strar o título no botón
 
-#: ../panel-plugin/desktop-menu-plugin.c:771
+#: ../panel-plugin/desktop-menu-plugin.c:801
 msgid Menu File
 msgstr Ficheiro de menú
 
-#: ../panel-plugin/desktop-menu-plugin.c:783
+#: ../panel-plugin/desktop-menu-plugin.c:813
 msgid Use default _desktop menu file
 msgstr Usar o ficheiro de menú de _escritorio predeterminado
 
-#: ../panel-plugin/desktop-menu-plugin.c:792
+#: ../panel-plugin/desktop-menu-plugin.c:822
 msgid Use _custom menu file:
 msgstr Usar un ficheiro de menú _personalizado:
 
-#: ../panel-plugin/desktop-menu-plugin.c:833
+#: ../panel-plugin/desktop-menu-plugin.c:863
 msgid _Edit Menu
 msgstr _Editar menú
 
-#: ../panel-plugin/desktop-menu-plugin.c:840
+#: ../panel-plugin/desktop-menu-plugin.c:870
 msgid Icons
 msgstr Iconas
 
-#: ../panel-plugin/desktop-menu-plugin.c:852
+#: ../panel-plugin/desktop-menu-plugin.c:882
 msgid _Button icon:
 msgstr Icona do _botón:
 
-#: ../panel-plugin/desktop-menu-plugin.c:866
+#: ../panel-plugin/desktop-menu-plugin.c:896
 msgid Show _icons in menu
 msgstr Mostrar _iconas nos menús
 
-#: ../panel-plugin/desktop-menu-plugin.c:901
+#: ../panel-plugin/desktop-menu-plugin.c:931
 msgid There is already a panel menu registered for this screen
 msgstr Xa hai un menú de panel rexistrado para esta pantalla
 
-#: ../panel-plugin/desktop-menu-plugin.c:1016
+#: ../panel-plugin/desktop-menu-plugin.c:1046
 msgid Edit Menu
 msgstr Editar menú
 
@@ -189,138 +189,133 @@ msgstr Ficheiros de 

[Xfce4-commits] exo:xfce-4.6 l10n: Added Portuguese translation

2010-01-07 Thread Transifex
Updating branch refs/heads/xfce-4.6
 to ed4e4718b8f0586aa90aaedda57e5a0e242eaf4b (commit)
   from 7695d5332e31949332c690fa718bb604ffa541f8 (commit)

commit ed4e4718b8f0586aa90aaedda57e5a0e242eaf4b
Author: Sergio Marques smarque...@gmail.com
Date:   Thu Jan 7 17:53:53 2010 +0100

l10n: Added Portuguese translation

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

 po-doc/{pt_BR.po = pt.po} |   84 +++-
 1 files changed, 44 insertions(+), 40 deletions(-)

diff --git a/po-doc/pt_BR.po b/po-doc/pt.po
similarity index 66%
copy from po-doc/pt_BR.po
copy to po-doc/pt.po
index 1ffbd36..761c80e 100644
--- a/po-doc/pt_BR.po
+++ b/po-doc/pt.po
@@ -1,18 +1,22 @@
-# Brazilian portuguese translation of the manual from the libexo package.
-# Gunther Furtado gunze...@yahoo.com.br, 2006.
+# Portuguese translation of the of exo-docs package.
+# Copyright (C) 2008 THE exo-docs'S COPYRIGHT HOLDER
+# This file is distributed under the same license as exo-docs package.
+# Sérgio Marques smarque...@gmail.com 2010
 msgid 
 msgstr 
-Project-Id-Version: pt_BR\n
+Project-Id-Version: exo-docs\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-05-05 02:50+0900\n
-PO-Revision-Date: 2006-11-18 18:59-0200\n
-Last-Translator: Gunther Furtado gunze...@yahoo.com.br\n
-Language-Team: Brazilian Portuguese xfce-i...@xfce.org\n
+POT-Creation-Date: 2009-04-20 15:37+0200\n
+PO-Revision-Date: 2010-01-07 16:26-\n
+Last-Translator: Sérgio Marques smarque...@gmail.com\n
+Language-Team:  xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 X-Generator: KBabel 1.11.4\n
-Plural-Forms:  nplurals=2; plural=(n  1);\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
+X-Poedit-Language: Portuguese\n
+X-Poedit-Country: PORTUGAL\n
 
 # Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
 # Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
@@ -20,7 +24,7 @@ msgstr 
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:95(None)
 msgid @@image: 'images/exo-preferred-applications-internet.png'; 
md5=aad820986d24a1cc052e491cf22100a2
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-internet.png'; 
md5=aad820986d24a1cc052e491cf22100a2
 
 # Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
 # Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
@@ -28,7 +32,7 @@ msgstr 
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:117(None)
 msgid @@image: 'images/exo-preferred-applications-webbrowser-menu.png'; 
md5=5aebcc859c5b3bffbb6141fb7e51cd7d
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-webbrowser-menu.png'; 
md5=5aebcc859c5b3bffbb6141fb7e51cd7d
 
 # Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
 # Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
@@ -36,7 +40,7 @@ msgstr 
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:140(None)
 msgid @@image: 'images/exo-preferred-applications-webbrowser-custom.png'; 
md5=8029c8ff46e17b868286f47bb3598d8d
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-webbrowser-custom.png'; 
md5=8029c8ff46e17b868286f47bb3598d8d
 
 # Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
 # Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
@@ -44,7 +48,7 @@ msgstr 
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:178(None)
 msgid @@image: 'images/exo-preferred-applications-utilities.png'; 
md5=5f789aa388d6fc1ea613a3d26c4fb0d7
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-utilities.png'; 
md5=5f789aa388d6fc1ea613a3d26c4fb0d7
 
 #: ../docs/manual/C/exo-preferred-applications.xml.in:13(title)
 msgid Xfce 4 Preferred Applications
@@ -68,11 +72,11 @@ msgstr Benedikt Meurer
 
 #: ../docs/manual/C/exo-preferred-applications.xml.in:25(para)
 msgid Permission is granted to copy, distribute and/or modify this document 
under the terms of the GNU Free Documentation License, Version 1.1 or any later 
version published by the Free Software Foundation; with no Invariant Sections, 
with no Front-Cover Texts, and with no Back-Cover Texts. The complete license 
text is available from the ulink type=\http\ 
url=\http://www.gnu.org/\;Free Software Foundation/ulink.
-msgstr É permitido copiar, distribuir e/ou modificar este documento sob os 
termos da Licença de Documentação Livre da GNU, na Versão 1.1 ou qualquer 

[Xfce4-commits] tumbler:master l10n: Updates to Portuguese (pt) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 236a0b2a53a2da7918b5cf7825d78ebc46d54e0e (commit)
   from 6ad42432e25b4bd2f3e9c079ab3b5d054a764921 (commit)

commit 236a0b2a53a2da7918b5cf7825d78ebc46d54e0e
Author: Sergio Marques smarque...@gmail.com
Date:   Thu Jan 7 17:57:53 2010 +0100

l10n: Updates to Portuguese (pt) translation

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

 po/pt.po |   42 --
 1 files changed, 20 insertions(+), 22 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index f1e274f..a301a19 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,10 +6,10 @@
 msgid 
 msgstr 
 Project-Id-Version: tumbler 0.1.0\n
-Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-01-07 14:45+0100\n
-PO-Revision-Date: 2009-12-21 17:48-\n
-Last-Translator: Sergio Marques smarque...@gmail.com\n
+Report-Msgid-Bugs-To: http://bugzilla.xfce.org\n;
+POT-Creation-Date: 2010-01-07 11:00+\n
+PO-Revision-Date: 2010-01-07 14:31-\n
+Last-Translator: Sérgio Marques smarque...@gmail.com\n
 Language-Team: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -35,7 +35,7 @@ msgstr Outro serviço genérico de miniaturas já está em 
execução
 
 #: ../tumblerd/tumbler-service.c:704
 msgid Unsupported thumbnail flavor requested
-msgstr 
+msgstr Requisitado um tipo de miniatura não suportado
 
 #: ../tumblerd/tumbler-specialized-thumbnailer.c:461
 msgid Failed to call the specialized thumbnailer: timeout
@@ -46,12 +46,14 @@ msgstr Falha ao invocar a miniatura: tempo de espera 
excedido
 msgid Failed to call the specialized thumbnailer: %s
 msgstr Falha ao invocar a miniatura: %s
 
-#: ../tumblerd/tumbler-manager.c:467 ../tumblerd/tumbler-manager.c:873
+#: ../tumblerd/tumbler-manager.c:467
+#: ../tumblerd/tumbler-manager.c:873
 #, c-format
 msgid Failed to load the file \%s\: %s
 msgstr Falha ao carregar o ficheiro \%s\: %s
 
-#: ../tumblerd/tumbler-manager.c:485 ../tumblerd/tumbler-manager.c:499
+#: ../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
@@ -59,14 +61,11 @@ msgstr Secção inválida \%s\ no ficheiro \%s\: %s
 
 #: ../tumblerd/tumbler-manager.c:526
 #, c-format
-msgid 
-Malformed section \%s\ in file \%s\: Mismatch between section name and 
-UriScheme/MimeType
-msgstr 
-Secção inválida \%s\ no ficheiro \%s\: Diferenças entre o nome da secção 
-e o esquema Uri/Tipo mime
+msgid Malformed section \%s\ in file \%s\: Mismatch between section name 
and UriScheme/MimeType
+msgstr Secção inválida \%s\ no ficheiro \%s\: Diferenças entre o nome da 
secção e o esquema Uri/Tipo mime
 
-#: ../tumblerd/tumbler-manager.c:886 ../tumblerd/tumbler-manager.c:900
+#: ../tumblerd/tumbler-manager.c:886
+#: ../tumblerd/tumbler-manager.c:900
 #: ../tumblerd/tumbler-manager.c:914
 #, c-format
 msgid Malformed file \%s\: %s
@@ -160,7 +159,7 @@ msgstr Conflito de versão: %s
 #: ../plugins/pixbuf-thumbnailer/pixbuf-thumbnailer-plugin.c:62
 #: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer-plugin.c:62
 msgid Initializing the Tumbler Pixbuf Thumbnailer plugin
-msgstr Iniciar o plugin de Tumbler Pixbuf Thumbnailer
+msgstr Iniciando o plugin Tumbler Pixbuf Thumbnailer
 
 #: ../plugins/pixbuf-thumbnailer/pixbuf-thumbnailer-plugin.c:79
 #: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer-plugin.c:79
@@ -169,7 +168,7 @@ msgstr Desligando o plugin Tumbler Pixbuf Thumbnailer
 
 #: ../plugins/font-thumbnailer/font-thumbnailer-plugin.c:62
 msgid Initializing the Tumbler Font Thumbnailer plugin
-msgstr Inicializando o plugin Tumbler Font Thumbnailer
+msgstr Iniciando o plugin Tumbler Font Thumbnailer
 
 #: ../plugins/font-thumbnailer/font-thumbnailer-plugin.c:79
 msgid Shutting down the Tumbler Font Thumbnailer plugin
@@ -191,7 +190,7 @@ msgstr Não foi possível carregar o ficheiro: %s
 #: ../plugins/font-thumbnailer/font-thumbnailer.c:494
 #, c-format
 msgid Could not open font file: %s
-msgstr não foi possível abrir o ficheiro de fontes: %s
+msgstr Não foi possível abrir o ficheiro de fontes: %s
 
 #. emit an error signal
 #: ../plugins/font-thumbnailer/font-thumbnailer.c:518
@@ -205,8 +204,8 @@ msgstr Não foi possível definir o mapa de caracteres: %s
 msgid Could not render glyphs: %s
 msgstr Não foi possivel renderizar glyphs: %s
 
-#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:743
-#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:781
+#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:753
+#: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer.c:791
 #, c-format
 msgid Thumbnail could not be inferred from file contents
 msgstr Não foi possível inferir o conteúdo do ficheiro
@@ -218,7 +217,7 @@ msgstr Não foi possível gravar a miniatura em \%s\
 
 #: ../plugins/xdg-cache/xdg-cache-plugin.c:57
 msgid Initializing the Tumbler XDG cache plugin
-msgstr Inicializando o plugin de cache Tumbler XDG
+msgstr Iniciando o plugin de cache Tumbler XDG
 
 #: 

[Xfce4-commits] exo:master l10n: Added Portuguese translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 320efc6965c654378d66fbe9313755d45b35bc8f (commit)
   from f1b3894b3499d954f5051f2868f219c8342be2b6 (commit)

commit 320efc6965c654378d66fbe9313755d45b35bc8f
Author: Sergio Marques smarque...@gmail.com
Date:   Thu Jan 7 18:03:50 2010 +0100

l10n: Added Portuguese translation

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

 po-doc/{gl.po = pt.po} |  108 +--
 1 files changed, 57 insertions(+), 51 deletions(-)

diff --git a/po-doc/gl.po b/po-doc/pt.po
similarity index 57%
copy from po-doc/gl.po
copy to po-doc/pt.po
index 24e1969..761c80e 100644
--- a/po-doc/gl.po
+++ b/po-doc/pt.po
@@ -1,52 +1,58 @@
-# Galician translation of libexo doc
-# Copyright (C) 2009 Leandro Regueiro
-# This file is distributed under the same license as the xfce package.
-#
-# Leandro Regueiro leandro.regue...@gmail.com, 2009.
-#
-# Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
-# colaborar connosco, podes atopar máis información en http://trasno.net
-#
+# Portuguese translation of the of exo-docs package.
+# Copyright (C) 2008 THE exo-docs'S COPYRIGHT HOLDER
+# This file is distributed under the same license as exo-docs package.
+# Sérgio Marques smarque...@gmail.com 2010
 msgid 
 msgstr 
-Project-Id-Version: PACKAGE VERSION\n
-Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
+Project-Id-Version: exo-docs\n
+Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-04-20 15:37+0200\n
-PO-Revision-Date: 2009-12-16 17:44+0100\n
-Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
-Language-Team: Galician proxe...@trasno.net\n
+PO-Revision-Date: 2010-01-07 16:26-\n
+Last-Translator: Sérgio Marques smarque...@gmail.com\n
+Language-Team:  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=2; plural=(n!=1);\n
+X-Generator: KBabel 1.11.4\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
+X-Poedit-Language: Portuguese\n
+X-Poedit-Country: PORTUGAL\n
 
+# Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
+# Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:95(None)
 msgid @@image: 'images/exo-preferred-applications-internet.png'; 
md5=aad820986d24a1cc052e491cf22100a2
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-internet.png'; 
md5=aad820986d24a1cc052e491cf22100a2
 
+# Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
+# Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:117(None)
 msgid @@image: 'images/exo-preferred-applications-webbrowser-menu.png'; 
md5=5aebcc859c5b3bffbb6141fb7e51cd7d
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-webbrowser-menu.png'; 
md5=5aebcc859c5b3bffbb6141fb7e51cd7d
 
+# Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
+# Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:140(None)
 msgid @@image: 'images/exo-preferred-applications-webbrowser-custom.png'; 
md5=8029c8ff46e17b868286f47bb3598d8d
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-webbrowser-custom.png'; 
md5=8029c8ff46e17b868286f47bb3598d8d
 
+# Quando as imagens forem alteradas, esta mensagem será marcada 
automaticamente como fuzzy ou não-traduzida.
+# Não importa como for feita esta tradução: estas linhas simplesmente não são 
utilizadas.
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/exo-preferred-applications.xml.in:178(None)
 msgid @@image: 'images/exo-preferred-applications-utilities.png'; 
md5=5f789aa388d6fc1ea613a3d26c4fb0d7
-msgstr 
+msgstr @@image: 'images/exo-preferred-applications-utilities.png'; 
md5=5f789aa388d6fc1ea613a3d26c4fb0d7
 
 #: ../docs/manual/C/exo-preferred-applications.xml.in:13(title)
 msgid Xfce 4 Preferred Applications
-msgstr Aplicacións preferidas de Xfce 4
+msgstr Aplicações Preferidas do Xfce 4
 
 #: ../docs/manual/C/exo-preferred-applications.xml.in:18(year)
 msgid 2004
@@ -66,7 +72,7 @@ msgstr Benedikt Meurer
 
 #: 

[Xfce4-commits] midori:master Move panel icons to the bottom and always remove the labels

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to a8cd1499ab30b0d6746cd3cdd86d089cdf233dac (commit)
   from cbebda0db432638b08296c9b15309a25e8e32665 (commit)

commit a8cd1499ab30b0d6746cd3cdd86d089cdf233dac
Author: Christian Dywan christ...@twotoasts.de
Date:   Thu Jan 7 23:32:25 2010 +0100

Move panel icons to the bottom and always remove the labels

This is an attempt at simplifying the panel, in the hope
that it is still discoverable enough.

 midori/midori-panel.c|   88 ++---
 midori/midori-viewable.c |2 +-
 2 files changed, 29 insertions(+), 61 deletions(-)

diff --git a/midori/midori-panel.c b/midori/midori-panel.c
index b38166a..2bf780e 100644
--- a/midori/midori-panel.c
+++ b/midori/midori-panel.c
@@ -32,6 +32,7 @@ struct _MidoriPanel
 GtkWidget* toolbar;
 GtkToolItem* button_align;
 GtkToolItem* button_detach;
+GtkToolItem* button_controls;
 GtkWidget* toolbar_label;
 GtkWidget* frame;
 GtkWidget* toolbook;
@@ -196,7 +197,7 @@ midori_panel_class_init (MidoriPanelClass* class)
  *
  * Whether to show panel titles.
  *
- * Since: 0.1.9
+ * Deprecated: 0.2.3
  */
 g_object_class_install_property (gobject_class,
  PROP_SHOW_TITLES,
@@ -404,14 +405,11 @@ midori_panel_init (MidoriPanel* panel)
 
 /* Create the sidebar */
 panel-toolbar = gtk_toolbar_new ();
-gtk_toolbar_set_style (GTK_TOOLBAR (panel-toolbar), GTK_TOOLBAR_BOTH);
-gtk_toolbar_set_icon_size (GTK_TOOLBAR (panel-toolbar),
-   GTK_ICON_SIZE_BUTTON);
-g_object_set (panel-toolbar, orientation, GTK_ORIENTATION_VERTICAL, 
NULL);
-gtk_box_pack_start (GTK_BOX (panel), panel-toolbar, FALSE, FALSE, 0);
+gtk_toolbar_set_icon_size (GTK_TOOLBAR (panel-toolbar), 
GTK_ICON_SIZE_BUTTON);
 gtk_widget_show_all (panel-toolbar);
 vbox = gtk_vbox_new (FALSE, 0);
 gtk_box_pack_start (GTK_BOX (panel), vbox, TRUE, TRUE, 0);
+gtk_box_pack_end (GTK_BOX (vbox), panel-toolbar, FALSE, FALSE, 0);
 
 /* Create the titlebar */
 labelbar = gtk_toolbar_new ();
@@ -517,13 +515,18 @@ midori_panel_set_property (GObject*  object,
 break;
 case PROP_SHOW_TITLES:
 panel-show_titles = g_value_get_boolean (value);
-gtk_toolbar_set_style (GTK_TOOLBAR (panel-toolbar),
-panel-show_titles ? GTK_TOOLBAR_BOTH : GTK_TOOLBAR_ICONS);
+/* Ignore */
 break;
 case PROP_SHOW_CONTROLS:
 panel-show_controls = g_value_get_boolean (value);
 sokoke_widget_set_visible (panel-labelbar, panel-show_controls);
 sokoke_widget_set_visible (panel-toolbar, panel-show_controls);
+if (panel-button_controls)
+{
+gtk_toggle_tool_button_set_active (
+GTK_TOGGLE_TOOL_BUTTON (panel-button_controls),
+!panel-show_controls);
+}
 break;
 case PROP_RIGHT_ALIGNED:
 midori_panel_set_right_aligned (panel, g_value_get_boolean (value));
@@ -691,54 +694,6 @@ midori_panel_construct_tool_item (MidoriPanel*panel,
 return GTK_TOOL_ITEM (toolitem);
 }
 
-#if !HAVE_HILDON
-static void
-midori_panel_show_titles_toggled_cb (GtkWidget*   menuitem,
- MidoriPanel* panel)
-{
-g_object_set (panel, show-titles, !panel-show_titles, NULL);
-}
-
-static void
-midori_panel_show_controls_toggled_cb (GtkWidget*   menuitem,
-   MidoriPanel* panel)
-{
-g_object_set (panel, show-controls, !panel-show_controls, NULL);
-}
-
-static void
-midori_panel_options_clicked_cb (GtkToolItem* toolitem,
- MidoriPanel* panel)
-{
-gint n;
-GtkWidget* viewable;
-GtkWidget* menu;
-GtkWidget* menuitem;
-
-n = midori_panel_get_current_page (panel);
-viewable = midori_panel_get_nth_page (panel, n);
-menu = gtk_menu_new ();
-menuitem = gtk_check_menu_item_new_with_mnemonic (_(Show panel _titles));
-gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem),
-panel-show_titles);
-g_signal_connect (menuitem, toggled,
-G_CALLBACK (midori_panel_show_titles_toggled_cb), panel);
-gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
-gtk_widget_show (menuitem);
-menuitem = gtk_check_menu_item_new_with_mnemonic (_(Show operating 
_controls));
-gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (menuitem),
-panel-show_controls);
-g_signal_connect (menuitem, toggled,
-G_CALLBACK (midori_panel_show_controls_toggled_cb), panel);
-gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
-gtk_widget_show (menuitem);
-g_signal_emit_by_name (viewable, populate-option-menu, menu);
-
-katze_widget_popup (GTK_WIDGET (toolitem), GTK_MENU (menu),
-NULL, 

[Xfce4-commits] midori:master Implement cm_skip_leading_dot() to avoid code duplication

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 170163cbabdd64d0ecf792e5f68cc3f9fee2ede7 (commit)
   from 973c82fdaeac14ac2aa43b3bab9779fe0351a186 (commit)

commit 170163cbabdd64d0ecf792e5f68cc3f9fee2ede7
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Fri Jan 8 00:10:26 2010 +0100

Implement cm_skip_leading_dot() to avoid code duplication

 extensions/cookie-manager/cookie-manager-page.c |   15 ++-
 1 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index 3d5cc19..c394efd 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -528,6 +528,12 @@ static void cm_button_delete_all_clicked_cb(GtkToolButton 
*button, CookieManager
 }
 
 
+static const gchar *cm_skip_leading_dot(const gchar *text)
+{
+   return (*text == '.') ? text + 1 : text;
+}
+
+
 static void cm_tree_drag_data_get_cb(GtkWidget *widget, GdkDragContext 
*drag_context,
 
GtkSelectionData *data, guint info, guint ltime,
 
CookieManagerPage *cmp)
@@ -554,7 +560,8 @@ static void cm_tree_drag_data_get_cb(GtkWidget *widget, 
GdkDragContext *drag_con
if (gtk_tree_store_iter_is_valid(priv-store, iter_store))
{
SoupCookie *cookie;
-   gchar *name, *text;
+   gchar *name;
+   const gchar *text;
 
gtk_tree_model_get(model, iter,
COOKIE_MANAGER_COL_NAME, name,
@@ -563,8 +570,7 @@ static void cm_tree_drag_data_get_cb(GtkWidget *widget, 
GdkDragContext *drag_con
 
if (cookie == NULL  name != NULL)
{
-   /* skip a leading dot */
-   text = (*name == '.') ? name + 1 : name;
+   text = cm_skip_leading_dot(name);
 
gtk_selection_data_set_text(data, text, -1);
}
@@ -613,8 +619,7 @@ static gchar *cm_get_domain_description_text(const gchar 
*domain, gint cookie_co
 {
gchar *str, *text;
 
-   if (*domain == '.')
-   domain++; /* skip a leading dot */
+   domain = cm_skip_leading_dot(domain);
 
text = g_markup_printf_escaped(
_(bDomain/b: %s\nbCookies/b: %d),
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Align domains with and without leading dots equally

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to e67d87247a5d806b7609bba45472ae2f52f54890 (commit)
   from 170163cbabdd64d0ecf792e5f68cc3f9fee2ede7 (commit)

commit e67d87247a5d806b7609bba45472ae2f52f54890
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Fri Jan 8 00:11:46 2010 +0100

Align domains with and without leading dots equally

 extensions/cookie-manager/cookie-manager-page.c |   22 ++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index c394efd..5aa9dbc 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -918,6 +918,26 @@ static gboolean cm_tree_button_press_event_cb(GtkWidget 
*widget, GdkEventButton
 }
 
 
+static void cm_tree_render_text_cb(GtkTreeViewColumn *column, GtkCellRenderer 
*renderer, GtkTreeModel *model,
+  GtkTreeIter 
*iter, gpointer data)
+{
+   gchar *name;
+
+   gtk_tree_model_get(model, iter, COOKIE_MANAGER_COL_NAME, name, -1);
+
+   if (name != NULL  *name != '.')
+   {
+   gchar *display_name = g_strconcat( , name, NULL);
+   g_object_set(renderer, text, display_name, NULL);
+   g_free(display_name);
+   }
+   else
+   g_object_set(renderer, text, name, NULL);
+
+   g_free(name);
+}
+
+
 static GtkWidget *cm_tree_prepare(CookieManagerPage *cmp)
 {
GtkCellRenderer *renderer;
@@ -936,6 +956,8 @@ static GtkWidget *cm_tree_prepare(CookieManagerPage *cmp)
gtk_tree_view_column_set_sort_indicator(column, TRUE);
gtk_tree_view_column_set_sort_column_id(column, 
COOKIE_MANAGER_COL_NAME);
gtk_tree_view_column_set_resizable(column, TRUE);
+   gtk_tree_view_column_set_cell_data_func(column, renderer,
+(GtkTreeCellDataFunc) cm_tree_render_text_cb, NULL, NULL);
gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column);
 
gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(treeview), TRUE);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Implement cm_list_length() for faster list length computations

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to d7aa05b9ec97f7fba6096f311ce5cc9737e410cd (commit)
   from a8cd1499ab30b0d6746cd3cdd86d089cdf233dac (commit)

commit d7aa05b9ec97f7fba6096f311ce5cc9737e410cd
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Thu Jan 7 23:59:00 2010 +0100

Implement cm_list_length() for faster list length computations

Since we only need to know whether the list of selected items
has 0, 1 or 2 or more items, it's enough to check for these 3 cases

 extensions/cookie-manager/cookie-manager-page.c |   23 +++
 1 files changed, 19 insertions(+), 4 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index f39c761..509d2d1 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -311,6 +311,21 @@ static void cm_free_selection_list(GList *rows, GFunc func)
 }
 
 
+/* Fast version of g_list_length(). It only checks for the first few elements 
of
+ * the list and returns the length 0, 1 or 2 where 2 means 2 elements or more. 
*/
+static gint cm_list_length(GList *list)
+{
+   if (list == NULL)
+   return 0;
+   else if (list-next == NULL)
+   return 1;
+   else if (list-next != NULL)
+   return 2;
+
+   return 0; /* safe default */
+}
+
+
 static void cm_tree_popup_collapse_activate_cb(GtkMenuItem *item, 
CookieManagerPage *cmp)
 {
CookieManagerPagePrivate *priv = COOKIE_MANAGER_PAGE_GET_PRIVATE(cmp);
@@ -361,7 +376,7 @@ static void cm_delete_item(CookieManagerPage *cmp)
 
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(priv-treeview));
rows = gtk_tree_selection_get_selected_rows(selection, model);
-   if (rows == NULL || g_list_length(rows) == 0) /* this should be the 
same */
+   if (cm_list_length(rows) == 0)
return;
 
/* as paths will change during delete, first create 
GtkTreeRowReferences for
@@ -525,7 +540,7 @@ static void cm_tree_drag_data_get_cb(GtkWidget *widget, 
GdkDragContext *drag_con
 
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(priv-treeview));
rows = gtk_tree_selection_get_selected_rows(selection, model);
-   if (g_list_length(rows) != 1)
+   if (cm_list_length(rows) != 1)
{
cm_free_selection_list(rows, (GFunc) gtk_tree_path_free);
return;
@@ -736,7 +751,7 @@ static void cm_tree_selection_changed_cb(GtkTreeSelection 
*selection, CookieMana
CookieManagerPagePrivate *priv = COOKIE_MANAGER_PAGE_GET_PRIVATE(cmp);
 
rows = gtk_tree_selection_get_selected_rows(selection, model);
-   rows_len = g_list_length(rows);
+   rows_len = cm_list_length(rows);
if (rows_len == 0)
{
valid = FALSE;
@@ -840,7 +855,7 @@ static gboolean cm_tree_button_press_event_cb(GtkWidget 
*widget, GdkEventButton
 
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(widget));
rows = gtk_tree_selection_get_selected_rows(selection, model);
-   if (g_list_length(rows) == 1)
+   if (cm_list_length(rows) == 1)
{
/* get iter */
gtk_tree_model_get_iter(model, iter, (GtkTreePath*) 
(g_list_nth_data(rows, 0)));
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Allow DND also for cookie items by using the value of the parent node

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to ca73b5fede6d9f4548a5c63d66ef124b4fab6f07 (commit)
   from e67d87247a5d806b7609bba45472ae2f52f54890 (commit)

commit ca73b5fede6d9f4548a5c63d66ef124b4fab6f07
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Fri Jan 8 00:13:29 2010 +0100

Allow DND also for cookie items by using the value of the parent node

 extensions/cookie-manager/cookie-manager-page.c |   11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index 5aa9dbc..1cc2be2 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -568,10 +568,17 @@ static void cm_tree_drag_data_get_cb(GtkWidget *widget, 
GdkDragContext *drag_con
COOKIE_MANAGER_COL_COOKIE, cookie,
-1);
 
-   if (cookie == NULL  name != NULL)
+   if (name != NULL)
{
-   text = cm_skip_leading_dot(name);
+   GtkTreeIter parent;
+   /* get the name of the parent item which should be a 
domain item */
+   if (cookie != NULL  gtk_tree_model_iter_parent(model, 
parent, iter))
+   {
+   g_free(name);
+   gtk_tree_model_get(model, parent, 
COOKIE_MANAGER_COL_NAME, name, -1);
+   }
 
+   text = cm_skip_leading_dot(name);
gtk_selection_data_set_text(data, text, -1);
}
g_free(name);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Show some basic information in description box when domain is selected

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 973c82fdaeac14ac2aa43b3bab9779fe0351a186 (commit)
   from d7aa05b9ec97f7fba6096f311ce5cc9737e410cd (commit)

commit 973c82fdaeac14ac2aa43b3bab9779fe0351a186
Author: Enrico Tröger enrico.troe...@uvena.de
Date:   Fri Jan 8 00:08:24 2010 +0100

Show some basic information in description box when domain is selected

 extensions/cookie-manager/cookie-manager-page.c |   37 +-
 1 files changed, 35 insertions(+), 2 deletions(-)

diff --git a/extensions/cookie-manager/cookie-manager-page.c 
b/extensions/cookie-manager/cookie-manager-page.c
index 509d2d1..3d5cc19 100644
--- a/extensions/cookie-manager/cookie-manager-page.c
+++ b/extensions/cookie-manager/cookie-manager-page.c
@@ -609,6 +609,25 @@ static gchar *cm_get_cookie_description_text(SoupCookie 
*cookie)
 }
 
 
+static gchar *cm_get_domain_description_text(const gchar *domain, gint 
cookie_count)
+{
+   gchar *str, *text;
+
+   if (*domain == '.')
+   domain++; /* skip a leading dot */
+
+   text = g_markup_printf_escaped(
+   _(bDomain/b: %s\nbCookies/b: %d),
+   domain, cookie_count);
+
+   str = g_strconcat(text, \n\n\n\n, NULL);
+
+   g_free(text);
+
+   return str;
+}
+
+
 #if GTK_CHECK_VERSION(2, 12, 0)
 static gboolean cm_tree_query_tooltip(GtkWidget *widget, gint x, gint y, 
gboolean keyboard_mode,
  
GtkTooltip *tooltip, CookieManagerPage *cmp)
@@ -743,7 +762,7 @@ static void cm_tree_selection_changed_cb(GtkTreeSelection 
*selection, CookieMana
GList *rows;
GtkTreeIter iter, iter_store;
GtkTreeModel *model;
-   gchar *text;
+   gchar *text, *name;
gboolean valid = TRUE;
gboolean delete_possible = TRUE;
guint rows_len;
@@ -765,6 +784,8 @@ static void cm_tree_selection_changed_cb(GtkTreeSelection 
*selection, CookieMana

gtk_tree_model_filter_convert_iter_to_child_iter(GTK_TREE_MODEL_FILTER(model),
iter_store, iter);
}
+   else
+   valid = FALSE;
 
if (valid  gtk_tree_store_iter_is_valid(priv-store, iter_store))
{
@@ -778,7 +799,19 @@ static void cm_tree_selection_changed_cb(GtkTreeSelection 
*selection, CookieMana
g_free(text);
}
else
-   valid = FALSE;
+   {
+   gtk_tree_model_get(model, iter, 
COOKIE_MANAGER_COL_NAME, name, -1);
+   if (name != NULL)
+   {
+   gint cookie_count = 
gtk_tree_model_iter_n_children(model, iter);
+
+   text = cm_get_domain_description_text(name, 
cookie_count);
+   
gtk_label_set_markup(GTK_LABEL(priv-desc_label), text);
+
+   g_free(text);
+   g_free(name);
+   }
+   }
}
/* This is a bit hack'ish but we add some empty lines to get a minimum 
height of the
 * label at the bottom without any font size calculation. */
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Remove excess break statement

2010-01-07 Thread Stephan Arts
Updating branch refs/heads/master
 to 3e01c494643d4cbdff7cb0c08e44028c35c0893a (commit)
   from 9d0ed1f3fec275a3b819dafb6c18c00dbb4f761f (commit)

commit 3e01c494643d4cbdff7cb0c08e44028c35c0893a
Author: Stephan Arts step...@xfce.org
Date:   Thu Jan 7 22:47:19 2010 +0100

Remove excess break statement

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

diff --git a/src/settings.c b/src/settings.c
index 13ca18a..6d7ca6a 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -643,7 +643,6 @@ rstto_settings_get_property(GObject*object,
 case PROP_WRAP_IMAGES:
 g_value_set_boolean (value, settings-priv-wrap_images);
 break;
-break;
 default:
 break;
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Add rudimentary support for tumbler.

2010-01-07 Thread Stephan Arts
Updating branch refs/heads/master
 to 6e636bef4a505fb4a42a70a372b7891dc15286b2 (commit)
   from 3e01c494643d4cbdff7cb0c08e44028c35c0893a (commit)

commit 6e636bef4a505fb4a42a70a372b7891dc15286b2
Author: Stephan Arts step...@xfce.org
Date:   Fri Jan 8 00:29:15 2010 +0100

Add rudimentary support for tumbler.

 configure.in.in |2 +-
 src/Makefile.am |1 +
 src/thumbnail.c |7 +
 src/thumbnail.h |3 +
 src/thumbnail_bar.c |   14 +++
 src/thumbnailer.c   |  314 +++
 src/thumbnailer.h   |   69 +++
 7 files changed, 409 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 123a1f1..c71f168 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -11,7 +11,7 @@ dnl *** Version information ***
 dnl ***
 m4_define([ristretto_version_major], [0])
 m4_define([ristretto_version_minor], [0])
-m4_define([ristretto_version_micro], [22])
+m4_define([ristretto_version_micro], [90])
 m4_define([ristretto_version_build], [...@revision@])
 m4_define([ristretto_version_tag], [gio]) # Leave empty for releases
 m4_define([ristretto_version], 
[ristretto_version_major().ristretto_version_minor().ristretto_version_micro()ifelse(ristretto_version_tag(),[],[],
 [-ifelse(ristretto_version_tag(), [svn], 
[ristretto_version_tag()-ristretto_version_build()], 
[ristretto_version_tag()])])])
diff --git a/src/Makefile.am b/src/Makefile.am
index 1fdba5f..e5e8a5f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -14,6 +14,7 @@ ristretto_SOURCES = \
app_menu_item.c app_menu_item.h \
thumbnail_bar.c thumbnail_bar.h \
thumbnail.c thumbnail.h \
+   thumbnailer.c thumbnailer.h \
main.c
 
 ristretto_CFLAGS = \
diff --git a/src/thumbnail.c b/src/thumbnail.c
index 16e8f27..90744d3 100644
--- a/src/thumbnail.c
+++ b/src/thumbnail.c
@@ -339,3 +339,10 @@ rstto_thumbnail_leave (GtkButton *button)
 gtk_widget_set_state (GTK_WIDGET (button), GTK_STATE_NORMAL);
 gtk_widget_queue_draw (GTK_WIDGET (button));
 }
+
+void
+rstto_thumbnail_update (RsttoThumbnail *thumb)
+{
+
+gtk_widget_queue_draw (GTK_WIDGET (thumb));
+}
diff --git a/src/thumbnail.h b/src/thumbnail.h
index 9b1c054..6d23b62 100644
--- a/src/thumbnail.h
+++ b/src/thumbnail.h
@@ -64,6 +64,9 @@ GType  rstto_thumbnail_get_type();
 GtkWidget  *rstto_thumbnail_new (RsttoImage *image);
 RsttoImage *rstto_thumbnail_get_image (RsttoThumbnail *thumb);
 
+
+void rstto_thumbnail_update (RsttoThumbnail *thumb);
+
 G_END_DECLS
 
 #endif /* __RISTRETTO_THUMBNAIL_H__ */
diff --git a/src/thumbnail_bar.c b/src/thumbnail_bar.c
index 02f24d1..db7b832 100644
--- a/src/thumbnail_bar.c
+++ b/src/thumbnail_bar.c
@@ -28,6 +28,7 @@
 #include image_list.h
 #include thumbnail.h
 #include thumbnail_bar.h
+#include thumbnailer.h
 
 struct _RsttoThumbnailBarPriv
 {
@@ -37,6 +38,7 @@ struct _RsttoThumbnailBarPriv
 gboolean auto_center;
 gint begin;
 gint end;
+
 RsttoImageList *image_list;
 RsttoImageListIter *iter;
 RsttoImageListIter *internal_iter;
@@ -49,6 +51,8 @@ struct _RsttoThumbnailBarPriv
 gint offset;
 gboolean motion;
 } motion;
+
+RsttoThumbnailer *thumbnailer;
 };
 
 static void
@@ -140,6 +144,7 @@ rstto_thumbnail_bar_init(RsttoThumbnailBar *bar)
 bar-priv = g_new0(RsttoThumbnailBarPriv, 1);
 
 bar-priv-auto_center = TRUE;
+bar-priv-thumbnailer = rstto_thumbnailer_new();
 
GTK_WIDGET_UNSET_FLAGS(bar, GTK_NO_WINDOW);
gtk_widget_set_redraw_on_allocate(GTK_WIDGET(bar), TRUE);
@@ -150,6 +155,7 @@ rstto_thumbnail_bar_init(RsttoThumbnailBar *bar)
 bar-priv-offset = 0;
 bar-priv-scroll_speed = 20;
 
+
 g_signal_connect(G_OBJECT(bar), scroll_event, 
G_CALLBACK(cb_rstto_thumbnail_bar_scroll_event), NULL);
 
 }
@@ -250,6 +256,8 @@ rstto_thumbnail_bar_size_allocate(GtkWidget *widget, 
GtkAllocation *allocation)
 GtkRequisition child_requisition;
 GList *iter = bar-priv-thumbs;
 
+RsttoImage *image = NULL;
+
gtk_widget_style_get(widget, spacing, spacing, NULL);
 widget-allocation = *allocation;
 
@@ -312,9 +320,15 @@ rstto_thumbnail_bar_size_allocate(GtkWidget *widget, 
GtkAllocation *allocation)
 {
 gtk_widget_set_child_visible(GTK_WIDGET(iter-data), TRUE);
 gtk_widget_size_allocate(GTK_WIDGET(iter-data), 
child_allocation);
+
+/* Do thumbnailing stuff */
+rstto_thumbnailer_queue_image (bar-priv-thumbnailer, 
iter-data);
 }
 else
+{
 gtk_widget_set_child_visible(GTK_WIDGET(iter-data), 
FALSE);
+rstto_thumbnailer_dequeue_image (bar-priv-thumbnailer, 
iter-data);
+}
 
 child_allocation.x += child_allocation.width + spacing;
 iter = g_list_next(iter);
diff --git 

[Xfce4-commits] ristretto:master Merge branch 'master' of ssh://git.xfce.org/git/apps/ristretto

2010-01-07 Thread Stephan Arts
Updating branch refs/heads/master
 to 84884ba370e3a8cee3458b4d53066e1b948a (commit)
   from 6e636bef4a505fb4a42a70a372b7891dc15286b2 (commit)

commit 84884ba370e3a8cee3458b4d53066e1b948a
Merge: 6e636bef4a505fb4a42a70a372b7891dc15286b2 
69619f1202394434a263ff98ce61479e5a8c1487
Author: Stephan Arts step...@xfce.org
Date:   Fri Jan 8 00:29:42 2010 +0100

Merge branch 'master' of ssh://git.xfce.org/git/apps/ristretto

commit 69619f1202394434a263ff98ce61479e5a8c1487
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Wed Jan 6 19:08:41 2010 +0100

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

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

commit 5686b2b3260e74c0eaadad0e24797a22e9f8af04
Author: Evaggelos Balaskas ebalas...@ebalaskas.gr
Date:   Thu Dec 31 19:36:24 2009 +

l10n: Updates to Greek (el) translation

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

 po/ca.po |  158 +
 po/el.po |   80 +--
 2 files changed, 130 insertions(+), 108 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index c0cc217..23ec7d4 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,15 +2,16 @@
 # Traduccions al català del paquet «ristretto».
 # Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the ristretto package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2008-2009.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2010.
+# Harald Servat redcr...@gmail.com, 2009.
 #
 msgid 
 msgstr 
 Project-Id-Version: ristretto\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2009-10-12 00:12+0200\n
-PO-Revision-Date: 2009-11-05 15:33+0100\n
-Last-Translator: Harald Servat redcr...@gmail.com\n
+POT-Creation-Date: 2009-10-25 19:26+0100\n
+PO-Revision-Date: 2010-01-06 19:07+0100\n
+Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -266,13 +267,11 @@ msgstr Superior
 msgid Bottom
 msgstr Inferior
 
-#: ../src/main_window.c:514
-#: ../src/main_window.c:780
+#: ../src/main_window.c:514 ../src/main_window.c:780
 msgid Press open to select an image
 msgstr Feu clic a Obrir per seleccionar una imatge
 
-#: ../src/main_window.c:767
-#: ../src/main_window.c:772
+#: ../src/main_window.c:767 ../src/main_window.c:772
 msgid Empty
 msgstr Buit
 
@@ -286,7 +285,9 @@ msgstr Ristretto és visor d'imatges per l'entorn 
d'escriptori Xfce.
 
 #: ../src/main_window.c:1569
 msgid translator-credits
-msgstr Carles Muñoz Gorriz «carle...@internautas.org», 2008-2009.
+msgstr 
+Carles Muñoz Gorriz carle...@internautas.org, 2008-2010.\n
+Harald Servat redcr...@gmail.com, 2009.
 
 #: ../src/main_window.c:1884
 msgid Open image
@@ -300,10 +301,8 @@ msgstr Imatges
 msgid .jp(e)g
 msgstr .jp(e)g
 
-#: ../src/main_window.c:1923
-#: ../src/main_window.c:1946
-#: ../src/main_window.c:2105
-#: ../src/main_window.c:2120
+#: ../src/main_window.c:1923 ../src/main_window.c:1946
+#: ../src/main_window.c:2105 ../src/main_window.c:2120
 msgid Could not open file
 msgstr No s'ha pogut obrir el fitxer
 
@@ -320,55 +319,55 @@ msgstr Desa una còpia
 msgid Are you sure you want to delete image '%s' from disk?
 msgstr Voleu suprimir la imatge «%s» del disc?
 
-#: ../src/preferences_dialog.c:225
+#: ../src/preferences_dialog.c:232
 msgid Display
 msgstr Visualització
 
-#: ../src/preferences_dialog.c:230
+#: ../src/preferences_dialog.c:237
 msgid Background color
 msgstr Color de fons
 
-#: ../src/preferences_dialog.c:234
+#: ../src/preferences_dialog.c:241
 msgid Override background color:
 msgstr Força el color de fons:
 
-#: ../src/preferences_dialog.c:262
+#: ../src/preferences_dialog.c:269
 msgid Quality
 msgstr Qualitat
 
-#: ../src/preferences_dialog.c:266
+#: ../src/preferences_dialog.c:273
 msgid Maximum render quality:
 msgstr Qualitat màxima de renderització:
 
-#: ../src/preferences_dialog.c:269
+#: ../src/preferences_dialog.c:276
 msgid Show preview when loading image
 msgstr Mostra la vista prèvia al carregar la imatge
 
-#: ../src/preferences_dialog.c:276
+#: ../src/preferences_dialog.c:283
 msgid Best
 msgstr La millor
 
-#: ../src/preferences_dialog.c:277
+#: ../src/preferences_dialog.c:284
 msgid High
 msgstr Alta
 
-#: ../src/preferences_dialog.c:278
+#: ../src/preferences_dialog.c:285
 msgid Medium
 msgstr Mitja
 
-#: ../src/preferences_dialog.c:279
+#: ../src/preferences_dialog.c:286
 msgid Low
 msgstr Baixa
 
-#: ../src/preferences_dialog.c:319
+#: ../src/preferences_dialog.c:326
 msgid Slideshow
 msgstr Seqüència d'imatges
 
-#: ../src/preferences_dialog.c:323
+#: ../src/preferences_dialog.c:330
 msgid Timeout
 msgstr Temps esgotat
 
-#: ../src/preferences_dialog.c:326
+#: ../src/preferences_dialog.c:333
 msgid 
 The time period an individual image is displayed during a slideshow\n
 (in seconds)
@@ -376,11 +375,11 

[Xfce4-commits] ristretto:master Fix assert

2010-01-07 Thread Stephan Arts
Updating branch refs/heads/master
 to d28d43cb7ad6d88f031befcfc3d112883b1c6833 (commit)
   from 84884ba370e3a8cee3458b4d53066e1b948a (commit)

commit d28d43cb7ad6d88f031befcfc3d112883b1c6833
Author: Stephan Arts step...@xfce.org
Date:   Fri Jan 8 00:39:15 2010 +0100

Fix assert

 src/thumbnail_bar.c |2 ++
 src/thumbnailer.c   |2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/src/thumbnail_bar.c b/src/thumbnail_bar.c
index db7b832..11163a5 100644
--- a/src/thumbnail_bar.c
+++ b/src/thumbnail_bar.c
@@ -669,6 +669,8 @@ rstto_thumbnail_bar_remove(GtkContainer *container, 
GtkWidget *child)
 
widget_was_visible = GTK_WIDGET_VISIBLE(child);
 
+rstto_thumbnailer_dequeue_image (bar-priv-thumbnailer, child);
+
 bar-priv-thumbs = g_list_remove(bar-priv-thumbs, child);
 
gtk_widget_unparent(child);
diff --git a/src/thumbnailer.c b/src/thumbnailer.c
index 623f742..11a1daf 100644
--- a/src/thumbnailer.c
+++ b/src/thumbnailer.c
@@ -238,7 +238,7 @@ rstto_thumbnailer_dequeue_image (RsttoThumbnailer 
*thumbnailer, RsttoImage *imag
 if (thumbnailer-priv-request_timer_id)
 g_source_remove (thumbnailer-priv-request_timer_id);
 
-thumbnailer-priv-queue = g_slist_remove (thumbnailer-priv-queue, 
image);
+thumbnailer-priv-queue = g_slist_remove_all (thumbnailer-priv-queue, 
image);
 
 thumbnailer-priv-request_timer_id = g_timeout_add_full (G_PRIORITY_LOW, 
100, (GSourceFunc)rstto_thumbnailer_queue_request_timer, thumbnailer, NULL);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Move the logo on special pages to the background

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to dba473e06980c4e5074ad0b89be7259762698cb3 (commit)
   from ca73b5fede6d9f4548a5c63d66ef124b4fab6f07 (commit)

commit dba473e06980c4e5074ad0b89be7259762698cb3
Author: Christian Dywan christ...@twotoasts.de
Date:   Fri Jan 8 00:42:23 2010 +0100

Move the logo on special pages to the background

 midori/midori-view.c |   10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/midori/midori-view.c b/midori/midori-view.c
index 0f67099..690e7ce 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -995,7 +995,7 @@ webkit_web_frame_load_done_cb (WebKitWebFrame* web_frame,
 htmlheadtitle%s/title/head
 bodyh1%s/h1
 img src=\file:// MDATADIR /midori/logo-shade.png\ 
-style=\position: absolute; right: 15px; bottom: 15px;\
+style=\position: absolute; right: 15px; bottom: 15px; z-index: 
-9;\
 p /The page you were opening doesn't exist.
 p /Try to a href=\%s\load the page again/a, 
 or move on to another page.
@@ -3198,7 +3198,7 @@ midori_view_set_uri (MidoriView*  view,
 htmlheadtitle%s/title/head
 bodyh1%s/h1
 img src=\file:// MDATADIR /midori/logo-shade.png\ 
-style=\position: absolute; right: 15px; bottom: 15px;\
+style=\position: absolute; right: 15px; bottom: 15px; 
z-index: -9;\
 p /The document %s of type '%s' cannot be displayed.
 /body/html,
 title, title, view-uri, view-mime_type);
@@ -3215,7 +3215,7 @@ midori_view_set_uri (MidoriView*  view,
 htmlheadtitle%s/title/head
 bodyh1%s/h1
 img src=\file:// MDATADIR /midori/logo-shade.png\ 
-style=\position: absolute; right: 15px; bottom: 15px;\
+style=\position: absolute; right: 15px; bottom: 15px; 
z-index: -9;\
 p /There is no documentation installed at %s.
 You may want to ask your distribution or 
 package maintainer for it or if this a custom build 
@@ -3259,7 +3259,7 @@ midori_view_set_uri (MidoriView*  view,
 htmlheadtitleabout:version/title/head
 bodyh1about:version/h1
 img src=\res://logo-shade.png\ 
-style=\position: absolute; right: 15px; bottom: 15px;\
+style=\position: absolute; right: 15px; bottom: 15px; 
z-index: -9;\
 table
 trtdMidori/tdtd PACKAGE_VERSION %s/td/tr
 trtdWebKitGTK+/tdtd%d.%d.%d (%d.%d.%d)/td/tr
@@ -3300,7 +3300,7 @@ midori_view_set_uri (MidoriView*  view,
 data = g_strdup_printf (
 htmlheadtitle%s/title/headbodyh1%s/h1
 img src=\file:// MDATADIR /midori/logo-shade.png\ 
-style=\position: absolute; right: 15px; bottom: 15px;\
+style=\position: absolute; right: 15px; bottom: 15px; 
z-index: -9;\
 /body/html, view-uri, view-uri);
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Prevent a recurive loop when toggling operating controls

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 317eefa1c8ad5b4e36ddab84dbdd7041b07e27e9 (commit)
   from dba473e06980c4e5074ad0b89be7259762698cb3 (commit)

commit 317eefa1c8ad5b4e36ddab84dbdd7041b07e27e9
Author: Christian Dywan christ...@twotoasts.de
Date:   Fri Jan 8 01:08:37 2010 +0100

Prevent a recurive loop when toggling operating controls

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

diff --git a/midori/midori-panel.c b/midori/midori-panel.c
index 2bf780e..4f5c097 100644
--- a/midori/midori-panel.c
+++ b/midori/midori-panel.c
@@ -522,11 +522,9 @@ midori_panel_set_property (GObject*  object,
 sokoke_widget_set_visible (panel-labelbar, panel-show_controls);
 sokoke_widget_set_visible (panel-toolbar, panel-show_controls);
 if (panel-button_controls)
-{
 gtk_toggle_tool_button_set_active (
 GTK_TOGGLE_TOOL_BUTTON (panel-button_controls),
 !panel-show_controls);
-}
 break;
 case PROP_RIGHT_ALIGNED:
 midori_panel_set_right_aligned (panel, g_value_get_boolean (value));
@@ -726,7 +724,8 @@ static void
 midori_panel_show_controls_toggled_cb (GtkWidget*   menuitem,
MidoriPanel* panel)
 {
-g_object_set (panel, show-controls, !panel-show_controls, NULL);
+if (panel-show_controls != !gtk_toggle_tool_button_get_active 
(GTK_TOGGLE_TOOL_BUTTON (menuitem)))
+g_object_set (panel, show-controls, !panel-show_controls, NULL);
 }
 #endif
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Hide panel toolbooks when there is only a controls button in there

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 9db458ba9ce83992ff289cafde9b48538ed23ffa (commit)
   from 317eefa1c8ad5b4e36ddab84dbdd7041b07e27e9 (commit)

commit 9db458ba9ce83992ff289cafde9b48538ed23ffa
Author: Christian Dywan christ...@twotoasts.de
Date:   Fri Jan 8 01:43:33 2010 +0100

Hide panel toolbooks when there is only a controls button in there

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

diff --git a/midori/midori-panel.c b/midori/midori-panel.c
index 4f5c097..c927aef 100644
--- a/midori/midori-panel.c
+++ b/midori/midori-panel.c
@@ -986,11 +986,19 @@ midori_panel_set_current_page (MidoriPanel* panel,
 
 if ((viewable = midori_panel_get_nth_page (panel, n)))
 {
+GtkWidget* toolbar;
+GList* items;
 const gchar* label;
 
 if (!GTK_WIDGET_VISIBLE (viewable))
 return;
+
 gtk_notebook_set_current_page (GTK_NOTEBOOK (panel-toolbook), n);
+toolbar = gtk_notebook_get_nth_page (GTK_NOTEBOOK (panel-toolbook), 
n);
+items = gtk_container_get_children (GTK_CONTAINER (toolbar));
+sokoke_widget_set_visible (panel-toolbook,
+g_list_nth_data (items, 1) != NULL);
+g_list_free (items);
 gtk_notebook_set_current_page (GTK_NOTEBOOK (panel-notebook), n);
 label = midori_viewable_get_label (MIDORI_VIEWABLE (viewable));
 g_object_set (panel-toolbar_label, label, label, NULL);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master Remove empty button from the Extensions panel

2010-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to a8d3d0955f5d9a334ed6440be3a0361be9958246 (commit)
   from 9db458ba9ce83992ff289cafde9b48538ed23ffa (commit)

commit a8d3d0955f5d9a334ed6440be3a0361be9958246
Author: Christian Dywan christ...@twotoasts.de
Date:   Fri Jan 8 01:44:48 2010 +0100

Remove empty button from the Extensions panel

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

diff --git a/panels/midori-extensions.c b/panels/midori-extensions.c
index 8f26758..6fe8fb7 100644
--- a/panels/midori-extensions.c
+++ b/panels/midori-extensions.c
@@ -103,14 +103,10 @@ midori_extensions_get_toolbar (MidoriViewable* extensions)
 if (!MIDORI_EXTENSIONS (extensions)-toolbar)
 {
 GtkWidget* toolbar;
-GtkToolItem* toolitem;
 
 toolbar = gtk_toolbar_new ();
 gtk_toolbar_set_style (GTK_TOOLBAR (toolbar), GTK_TOOLBAR_BOTH_HORIZ);
 gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar), 
GTK_ICON_SIZE_BUTTON);
-toolitem = gtk_tool_item_new ();
-gtk_toolbar_insert (GTK_TOOLBAR (toolbar), toolitem, -1);
-gtk_widget_show (GTK_WIDGET (toolitem));
 
 MIDORI_EXTENSIONS (extensions)-toolbar = toolbar;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] midori:master l10n: Updates to Czech (cs) translation

2010-01-07 Thread Transifex
Updating branch refs/heads/master
 to 0c1a519d57a5e71389f77fafeac9ee50581d4660 (commit)
   from a8d3d0955f5d9a334ed6440be3a0361be9958246 (commit)

commit 0c1a519d57a5e71389f77fafeac9ee50581d4660
Author: David Štancl dsta...@dstancl.cz
Date:   Fri Jan 8 08:32:36 2010 +0100

l10n: Updates to Czech (cs) translation

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

 po/cs.po |  293 --
 1 files changed, 150 insertions(+), 143 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 582714e..231ded5 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,8 +7,8 @@ msgid 
 msgstr 
 Project-Id-Version: midori 0.2.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-01-07 08:20+0100\n
-PO-Revision-Date: 2010-01-07 08:22+0100\n
+POT-Creation-Date: 2010-01-08 08:29+0100\n
+PO-Revision-Date: 2010-01-08 08:31+0100\n
 Last-Translator: David Štancl dsta...@dstancl.cz\n
 Language-Team: Czech  \n
 MIME-Version: 1.0\n
@@ -22,8 +22,8 @@ msgstr 
 msgid Lightweight web browser
 msgstr Odlehčený prohlížeč
 
-#: ../data/midori.desktop.in.h:2 ../midori/main.c:1535 ../midori/main.c:1737
-#: ../midori/main.c:1745 ../midori/main.c:1756
+#: ../data/midori.desktop.in.h:2 ../midori/main.c:1577 ../midori/main.c:1779
+#: ../midori/main.c:1787 ../midori/main.c:1798
 #: ../midori/midori-websettings.c:296
 msgid Midori
 msgstr Midori
@@ -32,90 +32,90 @@ msgstr Midori
 msgid Web Browser
 msgstr Internetový prohlížeč
 
-#: ../midori/main.c:106
+#: ../midori/main.c:105
 #, c-format
 msgid The configuration couldn't be loaded: %s\n
 msgstr Konfigurace nemůže být načtena: %s\n
 
-#: ../midori/main.c:161
+#: ../midori/main.c:160
 #, c-format
 msgid Value '%s' is invalid for %s
 msgstr Hodnota '%s' je pro %s špatná
 
-#: ../midori/main.c:168 ../midori/main.c:254
+#: ../midori/main.c:167 ../midori/main.c:253
 #, c-format
 msgid Invalid configuration value '%s'
 msgstr Nesprávná hodnota '%s' v konfiguraci
 
-#: ../midori/main.c:378 ../extensions/formhistory.c:436
+#: ../midori/main.c:377 ../extensions/formhistory.c:436
 #, c-format
 msgid Failed to open database: %s\n
 msgstr Nepodařilo se otevřít databázi: %s\n
 
-#: ../midori/main.c:410 ../extensions/formhistory.c:451
+#: ../midori/main.c:409 ../extensions/formhistory.c:451
 #: ../extensions/formhistory.c:455
 #, c-format
 msgid Failed to execute database statement: %s\n
 msgstr Nepodařilo se spustit databázový příkaz: %s\n
 
-#: ../midori/main.c:464
+#: ../midori/main.c:463
 #, c-format
 msgid Failed to remove history item: %s\n
 msgstr Nepodařilo se odstranit položku historie: %s\n
 
-#: ../midori/main.c:488
+#: ../midori/main.c:487
 #, c-format
 msgid Failed to clear history: %s\n
 msgstr Nepodařilo se smazat historii: %s\n
 
-#: ../midori/main.c:511
+#: ../midori/main.c:510
 #, c-format
 msgid Failed to update history item: %s\n
 msgstr Nepodařilo se zaktualizovat položku historie: %s\n
 
-#: ../midori/main.c:545
+#: ../midori/main.c:544
 #, c-format
 msgid Failed to get current time: %s\n
 msgstr Nepodařilo se zjistit aktuální čas: %s\n
 
-#: ../midori/main.c:561
+#: ../midori/main.c:560
 #, c-format
 msgid Failed to add history item: %s\n
 msgstr Nepodařilo se přidat položku do historie: %s\n
 
 #. i18n: Couldn't remove items that are older than n days
-#: ../midori/main.c:740
+#: ../midori/main.c:739
 #, c-format
 msgid Failed to remove old history items: %s\n
 msgstr Nepodařilo se odstranit staré položky historie: %s\n
 
-#: ../midori/main.c:769
+#: ../midori/main.c:768
 #, c-format
 msgid The configuration couldn't be saved. %s
 msgstr Konfigurace nemůže být uložena. %s
 
-#: ../midori/main.c:807
+#: ../midori/main.c:806
 #, c-format
 msgid The search engines couldn't be saved. %s
 msgstr Vyhledávací nástroj nemůže být uložen. %s
 
-#: ../midori/main.c:826 ../midori/main.c:876 ../midori/main.c:896
+#: ../midori/main.c:825 ../midori/main.c:875 ../midori/main.c:895
 #, c-format
 msgid The bookmarks couldn't be saved. %s
 msgstr Záložky nemohou být uloženy. %s
 
 #. i18n: Trash, or wastebin, containing closed tabs
-#: ../midori/main.c:926 ../midori/main.c:949
+#: ../midori/main.c:925 ../midori/main.c:948
 #, c-format
 msgid The trash couldn't be saved. %s
 msgstr Seznam zavřených karet nemůže být uložen. %s
 
-#: ../midori/main.c:1018 ../midori/main.c:1221
+#: ../midori/main.c:1012 ../midori/main.c:1215
 #, c-format
 msgid The session couldn't be saved. %s
 msgstr Sezení nemůže být uloženo. %s
 
-#: ../midori/main.c:1255
+#: ../midori/main.c:1249
 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.
@@ -123,121 +123,121 @@ msgstr 
 Zdá se, že Midori nebylo naposledy řádně ukončeno. Jestliže se to stává 
 opakovaně, pro odstranění problému zkuste následující možnosti.
 
-#: ../midori/main.c:1270
+#: ../midori/main.c:1264
 msgid Modify _preferences
 msgstr Změnit _nastavení
 
-#: ../midori/main.c:1274
+#: