[Xfce4-commits] xfce4-notes-plugin:master Notify note name change after insertion in the notebook

2009-08-22 Thread Mike Massonnet
Updating branch refs/heads/master
 to 2f44de239beb7f1c2e813aeac7be9924d37d9950 (commit)
   from 5b258ff8c7348a38bf6f63ef5a8969c5939deb8b (commit)

commit 2f44de239beb7f1c2e813aeac7be9924d37d9950
Author: Mike Massonnet mmasson...@xfce.org
Date:   Sat Aug 22 08:51:43 2009 +0200

Notify note name change after insertion in the notebook

 ChangeLog|7 +++
 panel-plugin/window.vala |3 ++-
 2 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 91709f1..93ed4bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-08-22  Mike Massonnet mmasson...@xfce.org
+
+Notify note name change after insertion in the notebook
+   * panel-plugin/window.vala:
+ - Send a notify signal on property name after insertion of the
+ note in the notebook to properly update the tab label.
+
 2009-08-21  Mike Massonnet mmasson...@xfce.org
 
 Keep order of notes (bug #5534)
diff --git a/panel-plugin/window.vala b/panel-plugin/window.vala
index e9a003f..93b91ec 100644
--- a/panel-plugin/window.vala
+++ b/panel-plugin/window.vala
@@ -551,7 +551,7 @@ namespace Xnp {
 */
private void note_notify (GLib.Object object, GLib.ParamSpec 
pspec) {
if (pspec.name == name) {
-   /* Update the window title */
+   /* Update the window title and notebook tab 
label */
var note = (Xnp.Note)object;
this.notebook.set_tab_label_text (note, 
note.name);
int page = this.notebook.get_current_page ();
@@ -930,6 +930,7 @@ namespace Xnp {
note.show ();
this.n_pages++;
this.notebook.insert_page (note, null, page);
+   note.name = note.name; //note.notify (name);
this.note_inserted (note);
return note;
}
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master use gdk_cairo_rectangle() instead of cairo_rectangle()

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/master
 to adc239805343ba41b15c66a244981b0b7ce3b20f (commit)
   from b20444e8036ee973f1042bae67e3c6b21a080b61 (commit)

commit adc239805343ba41b15c66a244981b0b7ce3b20f
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 01:56:08 2009 -0700

use gdk_cairo_rectangle() instead of cairo_rectangle()

 src/xfdesktop-icon-view.c |   10 --
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index 3cb3bda..2fe94fd 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -2471,14 +2471,12 @@ xfdesktop_paint_rounded_box(XfdesktopIconView 
*icon_view,
   alpha);
 
 /* restrict painting to expose area */
-cairo_rectangle(cr, expose_area-x, expose_area-y,
-expose_area-width, expose_area-height);
+gdk_cairo_rectangle(cr, expose_area);
 cairo_clip(cr);
 
-if(label_radius  0.1) {
-cairo_rectangle(cr, box_area.x, box_area.y,
-box_area.width, box_area.height);
-} else {
+if(label_radius  0.1)
+gdk_cairo_rectangle(cr, box_area);
+else {
 cairo_move_to(cr, box_area.x, box_area.y + label_radius);
 cairo_arc(cr, box_area.x + label_radius,
   box_area.y + label_radius, label_radius,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master remove unused member var

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/master
 to 1a7d9071b98391a4eb61c08fecfae3ea3955c8db (commit)
   from adc239805343ba41b15c66a244981b0b7ce3b20f (commit)

commit 1a7d9071b98391a4eb61c08fecfae3ea3955c8db
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 01:57:56 2009 -0700

remove unused member var

 src/xfdesktop-icon-view.c |2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index 2fe94fd..d27e761 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -170,8 +170,6 @@ struct _XfdesktopIconViewPrivate
 gdouble cell_text_width_proportion;
 
 gboolean ellipsize_icon_labels;
-
-gdouble corner_radius;
 };
 
 static gboolean xfdesktop_icon_view_button_press(GtkWidget *widget,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master update system font size when style changes

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/master
 to e1fda589fe58e8e3a5219aeb0f39840af88a306e (commit)
   from 1a7d9071b98391a4eb61c08fecfae3ea3955c8db (commit)

commit e1fda589fe58e8e3a5219aeb0f39840af88a306e
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 02:03:16 2009 -0700

update system font size when style changes

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

diff --git a/src/xfce-desktop.c b/src/xfce-desktop.c
index 1bc7727..95cbf2c 100644
--- a/src/xfce-desktop.c
+++ b/src/xfce-desktop.c
@@ -933,9 +933,22 @@ style_set_cb(GtkWidget *w,
  gpointer user_data)
 {
 XfceDesktop *desktop = XFCE_DESKTOP(w);
+#ifdef ENABLE_DESKTOP_ICONS
+gdouble old_font_size;
+#endif
 
 gdk_window_set_back_pixmap(w-window, desktop-priv-bg_pixmap, FALSE);
 gtk_widget_queue_draw(w);
+
+#ifdef ENABLE_DESKTOP_ICONS
+old_font_size = desktop-priv-system_font_size;
+if(xfce_desktop_ensure_system_font_size(desktop) != old_font_size
+desktop-priv-icon_view  !desktop-priv-icons_font_size_set)
+{
+
xfdesktop_icon_view_set_font_size(XFDESKTOP_ICON_VIEW(desktop-priv-icon_view),
+  desktop-priv-system_font_size);
+}
+#endif
 }
 
 static void
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:xfce-4.6 update NEWS

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/xfce-4.6
 to f956a5114ad3628faf383f07faff032d6c825225 (commit)
   from f54415dff052631b2615281082338d792fe2e682 (commit)

commit f956a5114ad3628faf383f07faff032d6c825225
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 02:24:40 2009 -0700

update NEWS

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

diff --git a/NEWS b/NEWS
index 923a4c6..8bc2370 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ Xfce 4.6.2
   * Never show 'Unmount' in volume context menus.
   * Always show 'Eject' in volume context menus, regardless of whether
 or not it's mounted (bug 5343).
+  * Update icon text labels when system font size changes (bug 2862).
 
 
 Xfce 4.6.1
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:xfce-4.6 add .gitignore file

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/xfce-4.6
 to 76e85e7f3542a6cf32ffc9437b01c3060904ea39 (commit)
   from f956a5114ad3628faf383f07faff032d6c825225 (commit)

commit 76e85e7f3542a6cf32ffc9437b01c3060904ea39
Author: Brian J. Tarricone br...@tarricone.org
Date:   Tue Aug 18 17:24:34 2009 -0700

add .gitignore file

 .gitignore |   56 
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..0a690e4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,56 @@
+Makefile
+.libs
+.deps
+*.lo
+*.la
+*.o
+*.so
+*.a
+.*.swp
+*stamp
+stamp*
+config.log
+config.h
+config.cache
+autom4te.cache
+config.status
+stamp-h1
+libtool
+xfdesktop.spec
+Makefile.in
+aclocal.m4
+compile
+config.guess
+config.h.in
+config.sub
+configure
+configure.ac
+depcomp
+install-sh
+ltmain.sh
+missing
+mkinstalldirs
+intltool-*
+INSTALL
+config.status.lineno
+doc/*/xfdesktop.xml
+modules/menu/directory-data/*.directory
+modules/menu/menu-data/*.desktop
+panel-plugin/xfce4-menu.desktop
+panel-plugin/xfce4-menu.desktop.in
+panel-plugin/xfce4-menu-plugin
+panel-plugin/xfce4-popup-menu
+po/POTFILES
+po/Makefile.in.in
+po/stamp-it
+po/*.gmo
+po/.intltool-merge-cache
+settings/xfce-backdrop-settings.desktop
+settings/xfdesktop-settings
+settings/xfdesktop-settings_glade.h
+src/*-enum-types.*
+src/xfdesktop
+src/xfdesktop-dbus-bindings-filemanager.h
+src/xfdesktop-dbus-bindings-trash.h
+src/xfdesktop-marshal.c
+src/xfdesktop-marshal.h
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master update NEWS

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/master
 to 60e01c8b83aa6f83e8a1e5cb734a0d7fba16e328 (commit)
   from 51e25a1b740267e83575955f36b81359f0a36e67 (commit)

commit 60e01c8b83aa6f83e8a1e5cb734a0d7fba16e328
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 02:24:40 2009 -0700

update NEWS

 NEWS |9 -
 1 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/NEWS b/NEWS
index 97d5ee7..c04e015 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,13 @@
-Xfce 4.7.x
+Xfce 4.7.0
 --
 
   * Allow DnD to image list in settings dialog (bug 4337).
+  * Refactor drawing routines in XfdesktopIconView to remove most
+flicker and most if not all repaint glitches.
+  * Use cairo to draw the rounded text label background instead of
+the hacky PNG composition method.
+  * Make the text label corner roundness configurable via a gtkrc
+style property.
 
 
 Xfce 4.6.2
@@ -12,6 +18,7 @@ Xfce 4.6.2
   * Never show 'Unmount' in volume context menus.
   * Always show 'Eject' in volume context menus, regardless of whether
 or not it's mounted (bug 5343).
+  * Update icon text labels when system font size changes (bug 2862).
 
 
 Xfce 4.6.1
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 3c9969476619edeb56ffe50ac2548275f9574838 (commit)
   from 6f4fa67e7b734a069405f5bc6f9c0aa9850c4615 (commit)

commit 3c9969476619edeb56ffe50ac2548275f9574838
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 13:48:14 2009 +

l10n: Updates to Danish (da) translation

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

 po-doc/da.po |  538 +++--
 1 files changed, 142 insertions(+), 396 deletions(-)

diff --git a/po-doc/da.po b/po-doc/da.po
index 86e3866..952e6b4 100644
--- a/po-doc/da.po
+++ b/po-doc/da.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the xfce4-screenshooter
 # package.
 # Lars Christian Jensen larschrjen...@gmail.com, 2009.
+# Per Kongstad p_kongs...@op.pl, 2009.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfce-screenshooter\n
-POT-Creation-Date: 2009-07-08 00:07+0200\n
+POT-Creation-Date: 2009-05-31 00:15+0200\n
 PO-Revision-Date: \n
-Last-Translator: Lars Christian Jensen larschrjen...@gmail.com\n
+Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Dansk-gruppen da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -19,36 +20,21 @@ msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ../docs/manual/C/xfce4-screenshooter.xml.in:85(None)
-#, fuzzy
-msgid 
-@@image: 'images/xfce4-screenshooter-dialog.png'; 
-md5=81327b7424d7b3498e19f2c8d4675b16
-msgstr 
-@@image: 'images/xfce4-screenshooter-dialog.png'; 
-md5=4deee4014eb81c2da3f90353ecb27a3b
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:90(None)
+msgid @@image: 'images/xfce4-screenshooter-dialog.png'; 
md5=4deee4014eb81c2da3f90353ecb27a3b
+msgstr @@image: 'images/xfce4-screenshooter-dialog.png'; 
md5=4deee4014eb81c2da3f90353ecb27a3b
 
 #. 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/xfce4-screenshooter.xml.in:232(None)
-#, fuzzy
-msgid 
-@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
-md5=c8102c88e978eb7ef63994f2648f5ae6
-msgstr 
-@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
-md5=90801d9f563892b813fb680fa6c7dc66
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:237(None)
+msgid @@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=90801d9f563892b813fb680fa6c7dc66
+msgstr @@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=90801d9f563892b813fb680fa6c7dc66
 
 #. 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/xfce4-screenshooter.xml.in:259(None)
-#, fuzzy
-msgid 
-@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
-md5=468def960a376d5a856f2fcb3b35daf1
-msgstr 
-@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
-md5=b626fbaeac959c97506f87bc3e93407a
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:264(None)
+msgid @@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=b626fbaeac959c97506f87bc3e93407a
+msgstr @@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=b626fbaeac959c97506f87bc3e93407a
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:12(title)
 msgid Xfce4 Screenshooter
@@ -67,20 +53,8 @@ msgid Jérôme Guelfucci
 msgstr Jérôme Guelfucci
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:23(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 
-Der gives hermed tilladelse til kopiere, distribuere og/eller ændre dette 
-dokument under betingelserne af GNU Free Documentation License, Version 1.1 
-eller enhver senere version udgivet af Free Software Foundation, med ingen 
-ufravigelige dele; ingen forsidetekst, og ingen bagsidetekst. Hele 
-licensteksten er til rådighed på ulink type=\http\ url=\http://www.gnu.;
-org/\Free Software Foundation/ulink.
+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 Der gives hermed tilladelse til kopiere, distribuere og/eller ændre 
dette dokument under 

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

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 2ed4aa542f07a7b0e33e639d15b2d7fb492004b1 (commit)
   from 3c9969476619edeb56ffe50ac2548275f9574838 (commit)

commit 2ed4aa542f07a7b0e33e639d15b2d7fb492004b1
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 13:50:03 2009 +

l10n: Updates to Danish (da) translation

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

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

diff --git a/po-doc/da.po b/po-doc/da.po
index 952e6b4..d9c280f 100644
--- a/po-doc/da.po
+++ b/po-doc/da.po
@@ -77,7 +77,6 @@ msgid Introduction to Xfce4 Screenshooter
 msgstr Introduktion til Xfce4 Screenshooter
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:51(para)
-#, fuzzy
 msgid This application allows you to capture the entire screen, the active 
window or a selected region. You can set the delay that elapses before the 
screenshot is taken and the action that will be done with the screenshot: save 
it to a PNG file, copy it to the clipboard, or open it using another 
application.
 msgstr Dette program giver dig mulighed for at tage et billede af hele 
skærmen, det aktive vindue eller en markeret region. Du kan indstille 
forsinkelsen før billedet er taget og handlingen med billeder udføres: gemme 
det som en PNG-fil, kopiere det til udklipsholderen eller åbne det med et 
andet program.
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 532999bbd39e5109adfb67b30a40dfb33e891d0c (commit)
   from 53275841c482fd6864b34a2ec0eb9dba8f6fa1d7 (commit)

commit 532999bbd39e5109adfb67b30a40dfb33e891d0c
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 13:54:55 2009 +

l10n: Updates to Danish (da) translation

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

 po/da.po |  320 +-
 1 files changed, 169 insertions(+), 151 deletions(-)

diff --git a/po/da.po b/po/da.po
index 46b99e3..81c0e8f 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,8 +7,8 @@ msgid 
 msgstr 
 Project-Id-Version: xarchiver 0.5.2\n
 Report-Msgid-Bugs-To: colossu...@gmail.com\n
-POT-Creation-Date: 2009-08-18 09:15+0200\n
-PO-Revision-Date: 2009-08-03 08:50+0100\n
+POT-Creation-Date: 2009-08-20 15:20+0200\n
+PO-Revision-Date: 2009-08-22 15:53+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: DANISH da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
@@ -19,13 +19,20 @@ msgstr 
 X-Poedit-Country: DENMARK\n
 X-Poedit-SourceCharset: utf-8\n
 
-#: ../src/7zip.c:57 ../src/arj.c:48 ../src/bzip2.c:104 ../src/rar.c:63
+#: ../src/7zip.c:57
+#: ../src/arj.c:48
+#: ../src/bzip2.c:104
+#: ../src/rar.c:63
 #: ../src/zip.c:49
 msgid Original
 msgstr Original
 
-#: ../src/7zip.c:57 ../src/arj.c:48 ../src/bzip2.c:104 ../src/gzip.c:78
-#: ../src/rar.c:63 ../src/zip.c:49
+#: ../src/7zip.c:57
+#: ../src/arj.c:48
+#: ../src/bzip2.c:104
+#: ../src/gzip.c:78
+#: ../src/rar.c:63
+#: ../src/zip.c:49
 msgid Compressed
 msgstr Komprimeret
 
@@ -33,17 +40,29 @@ msgstr Komprimeret
 msgid Attr
 msgstr Attribut
 
-#: ../src/7zip.c:57 ../src/arj.c:48 ../src/bzip2.c:187 ../src/gzip.c:61
-#: ../src/rar.c:63 ../src/tar.c:54 ../src/zip.c:49
+#: ../src/7zip.c:57
+#: ../src/arj.c:48
+#: ../src/bzip2.c:187
+#: ../src/gzip.c:61
+#: ../src/rar.c:63
+#: ../src/tar.c:54
+#: ../src/zip.c:49
 msgid Time
 msgstr Tid
 
-#: ../src/7zip.c:57 ../src/arj.c:48 ../src/bzip2.c:187 ../src/gzip.c:61
-#: ../src/rar.c:63 ../src/rpm.c:52 ../src/tar.c:54 ../src/zip.c:49
+#: ../src/7zip.c:57
+#: ../src/arj.c:48
+#: ../src/bzip2.c:187
+#: ../src/gzip.c:61
+#: ../src/rar.c:63
+#: ../src/rpm.c:52
+#: ../src/tar.c:54
+#: ../src/zip.c:49
 msgid Date
 msgstr Dato
 
-#: ../src/add_dialog.c:36 ../src/interface.c:388
+#: ../src/add_dialog.c:36
+#: ../src/interface.c:388
 msgid Add files
 msgstr Tilføj filer
 
@@ -72,27 +91,16 @@ msgid Update and add
 msgstr Opdatér og tilføj
 
 #: ../src/add_dialog.c:105
-msgid 
-This option will add any new files and update any files which have been 
-modified since the archive was last created/modified
-msgstr 
-Denne indstilling vil tilføje nye filer og opdatere filer, som er blevet 
-ændret, siden arkivet blev oprettet/ændret
+msgid This option will add any new files and update any files which have been 
modified since the archive was last created/modified
+msgstr Denne indstilling vil tilføje nye filer og opdatere filer, som er 
blevet ændret, siden arkivet blev oprettet/ændret
 
 #: ../src/add_dialog.c:108
 msgid Freshen and replace
 msgstr Opdatér og erstat
 
 #: ../src/add_dialog.c:111
-msgid 
-This option affects the archive only if it has been modified more recently 
-than the version already in the archive; unlike the update option it will 
-not add files that are not already in the archive
-msgstr 
-Denne indstilling påvirker kun arkivet, hvis filen er blevet modificeret 
-senere, end den version som allerede er i arkivet; modsat opdatér-
-indstillingen vil denne ikke tilføje filer, som ikke allerede findes i 
-arkivet
+msgid This option affects the archive only if it has been modified more 
recently than the version already in the archive; unlike the update option it 
will not add files that are not already in the archive
+msgstr Denne indstilling påvirker kun arkivet, hvis filen er blevet 
modificeret senere, end den version som allerede er i arkivet; modsat 
opdatér-indstillingen vil denne ikke tilføje filer, som ikke allerede findes 
i arkivet
 
 #: ../src/add_dialog.c:115
 msgid Include subdirectories
@@ -103,12 +111,8 @@ msgid Create a solid archive
 msgstr Opret et ensartet arkiv
 
 #: ../src/add_dialog.c:121
-msgid 
-In a solid archive the files are grouped together featuring a better 
-compression ratio
-msgstr 
-I et ensartet arkiv er filerne samlet sammen, og dette giver bedre 
-komprimeringforhold
+msgid In a solid archive the files are grouped together featuring a better 
compression ratio
+msgstr I et ensartet arkiv er filerne samlet sammen, og dette giver bedre 
komprimeringforhold
 
 #: ../src/add_dialog.c:124
 msgid Delete files after adding
@@ -122,7 +126,8 @@ msgstr Handlinger: 
 msgid Compression: 
 msgstr Komprimering: 
 
-#: ../src/add_dialog.c:157 ../src/extract_dialog.c:152
+#: ../src/add_dialog.c:157
+#: ../src/extract_dialog.c:152
 msgid Password:
 msgstr Adgangskode:
 
@@ -136,33 +141,26 @@ msgstr _Tilføj
 
 #: 

[Xfce4-commits] xarchiver:xarchiver-pcman l10n: Added Danish translation

2009-08-22 Thread Transifex
Updating branch refs/heads/xarchiver-pcman
 to 1bad0cddf5a81eafa7047ebe75af1b025864ba2b (commit)
   from 2c8c33e4524b6038bba0e0c353c00372da5735c8 (commit)

commit 1bad0cddf5a81eafa7047ebe75af1b025864ba2b
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 15:03:29 2009 +

l10n: Added Danish translation

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

 po/{cs.po = da.po} |  849 ---
 1 files changed, 472 insertions(+), 377 deletions(-)

diff --git a/po/cs.po b/po/da.po
similarity index 51%
copy from po/cs.po
copy to po/da.po
index bc70df8..812e737 100644
--- a/po/cs.po
+++ b/po/da.po
@@ -1,37 +1,40 @@
-# Czech translations for xarchiver package.
-# Copyright (C) 2006 THE xarchiver'S COPYRIGHT HOLDER
+# Danish translation of xarchiver
+# Copyright (C) 2006 The Xfce development team. All rights reserved.
 # This file is distributed under the same license as the xarchiver package.
-# Michal Várady miko.v...@gmail.com, 2006.
+# Per Kongstad p_kongs...@op.pl, 2009.
 #
 msgid 
 msgstr 
-Project-Id-Version: xarchiver 0.4.2rc2\n
+Project-Id-Version: xarchiver-pcman 0.5.2\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2007-08-22 12:45+0200\n
-PO-Revision-Date: 2007-12-16 16:51+0100\n
-Last-Translator: Michal Várady miko.v...@gmail.com\n
-Language-Team: Czech translation-team...@lists.sourceforge.net\n
+PO-Revision-Date: 2009-08-22 17:02+0100\n
+Last-Translator: Per Kongstad p_kongs...@op.pl\n
+Language-Team: DANISH da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n=2  n=4) ? 1 : 2;\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Poedit-Language: Danish\n
+X-Poedit-Country: DENMARK\n
+X-Poedit-SourceCharset: utf-8\n
 
 #: ../src/7zip.c:56
 #: ../src/arj.c:49
 #: ../src/rar.c:63
 msgid Original
-msgstr Původní
+msgstr Original
 
 #: ../src/7zip.c:56
 #: ../src/arj.c:49
 #: ../src/rar.c:63
 #: ../src/zip.c:51
 msgid Compressed
-msgstr Komprimovaný
+msgstr Komprimeret
 
 #: ../src/7zip.c:56
 msgid Attr
-msgstr Atrib
+msgstr Attribut
 
 #: ../src/7zip.c:56
 #: ../src/arj.c:49
@@ -42,7 +45,7 @@ msgstr Atrib
 #: ../src/tar.c:58
 #: ../src/zip.c:51
 msgid Time
-msgstr Čas
+msgstr Tid
 
 #: ../src/7zip.c:56
 #: ../src/arj.c:49
@@ -54,155 +57,155 @@ msgstr Čas
 #: ../src/tar.c:58
 #: ../src/zip.c:51
 msgid Date
-msgstr Datum
+msgstr Dato
 
 #: ../src/add_dialog.c:43
 msgid Add files to the archive
-msgstr Přidat soubory do archivu
+msgstr Tilføje filer til arkivet
 
 #: ../src/add_dialog.c:108
 msgid Files
-msgstr Soubory
+msgstr Filer 
 
 #: ../src/add_dialog.c:115
 msgid Directories
-msgstr Adresáře
+msgstr Kataloger
 
 #: ../src/add_dialog.c:141
 msgid Choose the files or directories to add to the archive
-msgstr Zvolte soubory nebo adresáře pro přidání do archivu
+msgstr Vælg filer eller kataloger at føje til arkivet
 
 #: ../src/add_dialog.c:146
 msgid bFiles and directories to add /b
-msgstr bSoubory a adresáře pro přidání /b
+msgstr bFiler og kataloger at tilføje /b
 
 #: ../src/add_dialog.c:166
 msgid Recurse subdirectories
-msgstr Procházet i podadresáře
+msgstr Medtag underkataloger
 
 #: ../src/add_dialog.c:172
 msgid Include everything in the directory recursively \tstarting from the 
current directory.
-msgstr Zahrne veškerý obsah aktuálního adresáře, \tvčetně jeho 
souborů a podadresářů
+msgstr Medtag alt i kataloget rekursivt \t begyndende fra det aktuelle 
katalog.
 
 #: ../src/add_dialog.c:177
 msgid Generate a solid archive
-msgstr Vytvořit archiv typu solid
+msgstr Opret et ensartet arkiv
 
 #: ../src/add_dialog.c:181
 msgid In a solid archive the files are grouped together featuring a better 
compression ratio.
-msgstr V archivu typu solid jsou všechny soubory spojeny do jednoho, což 
umožní lepší kompresní poměr
+msgstr I et ensartet arkiv er filerne samlet sammen, og dette giver bedre 
komprimeringforhold.
 
 #: ../src/add_dialog.c:186
 msgid Remove files after adding
-msgstr Po přidání smazat soubory
+msgstr Slet filer efter tilføjelse
 
 #: ../src/add_dialog.c:195
 msgid Do not add absolute paths
-msgstr Nepřidávat absolutní cesty
+msgstr Undlad at tilføje absolutte stier
 
 #: ../src/add_dialog.c:197
 msgid Do not add file paths
-msgstr Nepřidávat cesty souborů
+msgstr Undlad at tilføje filstier
 
 #: ../src/add_dialog.c:202
 msgid The files path doesn't include the user home directory.
-msgstr Cesta k souborům neobsahuje domovský adresář uživatele.
+msgstr Filernes sti indeholder ikke brugerens hjemmekatalog.
 
 #: ../src/add_dialog.c:204
 msgid Store just the name of a file without its directory names.
-msgstr Uloží pouze název souboru bez názvu adresáře.
+msgstr Gem blot navnet på en fil uden dens katalognavne.
 
 #: ../src/add_dialog.c:206
 msgid Freshen an existing entry
-msgstr Aktualizovat existující položku

[Xfce4-commits] xfce4-mailwatch-plugin:master l10n: Updates to Danish (da) translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 0c06f7e305632480d0303a4f0e72ee7f303bb811 (commit)
   from 73bfa113fdde40c2bab22281e4fea3ee21b79d94 (commit)

commit 0c06f7e305632480d0303a4f0e72ee7f303bb811
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 15:11:13 2009 +

l10n: Updates to Danish (da) translation

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

 po/da.po |3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/po/da.po b/po/da.po
index d107b1a..855bd81 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce-mailwatch-plugin 1.1.0\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-15 22:43-0700\n
-PO-Revision-Date: 2009-08-22 17:09+0100\n
+PO-Revision-Date: 2009-08-22 17:10+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Danish da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
@@ -334,7 +334,6 @@ msgid Canceling read: read too many bytes without a 
newline
 msgstr Afbryder læsning: læst for mange bytes uden et linjeskift
 
 #: ../libmailwatch-core/mailwatch-net-conn.c:960
-#, fuzzy
 msgid Buffer is not large enough to hold a full line (%
 msgstr Mellemlager er ikke stort nok til at indeholde en hel linje (%d  %d)
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mailwatch-plugin:master l10n: Updates to Danish (da) translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 73bfa113fdde40c2bab22281e4fea3ee21b79d94 (commit)
   from ca32f13b1d37a2aad5c6b6f270b00994c18340aa (commit)

commit 73bfa113fdde40c2bab22281e4fea3ee21b79d94
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 15:10:08 2009 +

l10n: Updates to Danish (da) translation

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

 po/da.po |  114 ++---
 1 files changed, 34 insertions(+), 80 deletions(-)

diff --git a/po/da.po b/po/da.po
index 15b747f..d107b1a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,14 +8,16 @@ msgstr 
 Project-Id-Version: xfce-mailwatch-plugin 1.1.0\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-15 22:43-0700\n
-PO-Revision-Date: 2008-10-14 19:47+0200\n
-Last-Translator: Lars Jensen l...@jink.dk\n
-Language-Team: Dansk da...@dansk-gruppen.dk\n
+PO-Revision-Date: 2009-08-22 17:09+0100\n
+Last-Translator: Per Kongstad p_kongs...@op.pl\n
+Language-Team: Danish da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-nplurals=2; plural=(n != 1);\n
 X-Generator: KBabel 1.11.4\n
+Plural-Forms: nplurals=2; plural=n != 1;\n
+X-Poedit-Language: Danish\n
+X-Poedit-Country: Denmark\n
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:204
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:399
@@ -26,23 +28,13 @@ msgstr TLS-forhandling mislykkedes: %s
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:255
 #, c-format
-msgid 
-Received HTTP response code %d.  The most likely reason for this is that 
-your GMail username or password is incorrect.
-msgstr 
-Modtog HTTP-reaktionskode %d. Den mest sandsynlige grund til at det sker er 
-hvis dit Gmail-brugernavn eller adgangskode er forkert.
+msgid Received HTTP response code %d.  The most likely reason for this is 
that your GMail username or password is incorrect.
+msgstr Modtog HTTP-reaktionskode %d. Den mest sandsynlige grund til at det 
sker er hvis dit Gmail-brugernavn eller adgangskode er forkert.
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:261
 #, c-format
-msgid 
-Received HTTP response code %d, which should be 200.  There may be a problem 
-with GMail's servers, or they have incompatibly changed their authentication 
-method or location of the new messages feed.
-msgstr 
-Modtog HTTP reaktionskode %d, som skulle være 200.  Der er muligvis et 
-problem med Gmail's servere, eller de har på en uforenelig måde ændret 
deres 
-godkendelsesmetode eller placering af deres beskedstrøm.
+msgid Received HTTP response code %d, which should be 200.  There may be a 
problem with GMail's servers, or they have incompatibly changed their 
authentication method or location of the new messages feed.
+msgstr Modtog HTTP reaktionskode %d, som skulle være 200.  Der er muligvis 
et problem med Gmail's servere, eller de har på en uforenelig måde ændret 
deres godkendelsesmetode eller placering af deres beskedstrøm.
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:394
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:735
@@ -51,9 +43,7 @@ msgstr 
 #: ../libmailwatch-core/mailwatch-mailbox-mh.c:487
 #: ../libmailwatch-core/mailwatch-mailbox-pop3.c:548
 msgid Previous thread hasn't exited yet, not checking mail this time.
-msgstr 
-Tidligere tråd er endnu ikke afsluttet, vil ikke kontrollere post på 
-nuværende tidspunkt.
+msgstr Tidligere tråd er endnu ikke afsluttet, vil ikke kontrollere post på 
nuværende tidspunkt.
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:535
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:1748
@@ -87,28 +77,19 @@ msgid Remote GMail Mailbox
 msgstr Ekstern Gmail-postkasse
 
 #: ../libmailwatch-core/mailwatch-mailbox-gmail.c:669
-msgid 
-The GMail plugin can connect to Google's mail service and securely retrieve 
-the number of new messages.
-msgstr 
-Gmail-udvidelsesmodulet kan forbinde til Google's posttjeneste og sikkert 
-hente antallet af nye beskeder.
+msgid The GMail plugin can connect to Google's mail service and securely 
retrieve the number of new messages.
+msgstr Gmail-udvidelsesmodulet kan forbinde til Google's posttjeneste og 
sikkert hente antallet af nye beskeder.
 
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:286
-msgid 
-Secure IMAP is not available, and the IMAP server does not support plaintext 
-logins.
-msgstr 
-Sikret IMAP er ikke mulig, og IMAP serveren understøtter ikke klartekst 
-login.
+msgid Secure IMAP is not available, and the IMAP server does not support 
plaintext logins.
+msgstr Sikret IMAP er ikke mulig, og IMAP serveren understøtter ikke 
klartekst login.
 
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:337
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:370
 #: ../libmailwatch-core/mailwatch-mailbox-pop3.c:242
 #: ../libmailwatch-core/mailwatch-mailbox-pop3.c:284
 msgid Authentication failed.  Perhaps your username or password is incorrect?
-msgstr 
-Godkendelsen 

[Xfce4-commits] xfce4-radio-plugin:master l10n: Updates to Danish (da) translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 7fbac77d5a38a32af9f51b4bcb495bd457cbc8c6 (commit)
   from 531f89964889fdfe76da58880aa4b85657239855 (commit)

commit 7fbac77d5a38a32af9f51b4bcb495bd457cbc8c6
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 15:38:46 2009 +

l10n: Updates to Danish (da) translation

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

 po/da.po |  150 +++--
 1 files changed, 96 insertions(+), 54 deletions(-)

diff --git a/po/da.po b/po/da.po
index ffd8ea2..51cedc5 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,107 +7,149 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-radio-plugin 0.3.1\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2008-06-14 15:16+0200\n
-PO-Revision-Date: 2008-11-04 09:50+0100\n
+POT-Creation-Date: 2009-01-25 23:05+0100\n
+PO-Revision-Date: 2009-08-22 17:38+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Danish da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 
-#: ../panel-plugin/radio.c:82
-msgid Not tuned
-msgstr Ikke indstillet
-
-#: ../panel-plugin/radio.c:104
+#: ../panel-plugin/xfce4-radio.c:226
 msgid - off -
 msgstr - slukket -
 
-#: ../panel-plugin/radio.c:174
+#: ../panel-plugin/xfce4-radio.c:311
 msgid Error opening radio device
 msgstr Fejl ved åbning af radioenhed
 
-#: ../panel-plugin/radio.c:296
-#: ../panel-plugin/radio.c:327
-#: ../panel-plugin/radio.c:527
-msgid Add preset
-msgstr Tilføj forvalg
-
-#: ../panel-plugin/radio.c:302
-#: ../panel-plugin/radio.c:333
-msgid Station name:
-msgstr Stationsnavn:
-
-#: ../panel-plugin/radio.c:354
-msgid There is already a preset with this frequency.
-msgstr Der findes allerede et forvalg med denne frekvens.
-
-#: ../panel-plugin/radio.c:392
+#: ../panel-plugin/xfce4-radio.c:394
 msgid Tune radio
 msgstr Indstil radio
 
-#: ../panel-plugin/radio.c:398
+#: ../panel-plugin/xfce4-radio.c:400
 msgid Frequency [MHz]:
 msgstr Frekvens [MHz]:
 
-#: ../panel-plugin/radio.c:421
+#: ../panel-plugin/xfce4-radio.c:424
 msgid Illegal frequency.
 msgstr Forbudt frekvens.
 
-#: ../panel-plugin/radio.c:498
+#: ../panel-plugin/xfce4-radio.c:481
+#: ../panel-plugin/xfce4-radio.c:1115
 msgid Presets
 msgstr Forvalg
 
-#: ../panel-plugin/radio.c:534
-msgid Delete active preset
-msgstr Slet aktivt forvalg
-
-#: ../panel-plugin/radio.c:541
-msgid Rename active preset
-msgstr Omdøb aktivt forvalg
-
-#: ../panel-plugin/radio.c:553
+#: ../panel-plugin/xfce4-radio.c:513
 msgid Tune to frequency
 msgstr Indstil til frekvens
 
-#: ../panel-plugin/radio.c:821
+#: ../panel-plugin/xfce4-radio.c:853
+msgid unnamed
+msgstr ikke navngivet
+
+#: ../panel-plugin/xfce4-radio.c:1019
 msgid Properties
 msgstr Egenskaber
 
-#: ../panel-plugin/radio.c:839
+#: ../panel-plugin/xfce4-radio.c:1114
+msgid Options
+msgstr Indstillinger
+
+#. Device
+#: ../panel-plugin/xfce4-radio.c:1133
+msgid Device
+msgstr Enhed
+
+#: ../panel-plugin/xfce4-radio.c:1149
 msgid V4L device
 msgstr V4L-enhed
 
-#: ../panel-plugin/radio.c:845
-msgid Display signal strength
-msgstr Vis signalstyrke
+#: ../panel-plugin/xfce4-radio.c:1166
+msgid Synchronize state with the card
+msgstr Synkronisér tilstand med kortet
 
-#: ../panel-plugin/radio.c:856
+#: ../panel-plugin/xfce4-radio.c:1168
 msgid yes
 msgstr ja
 
-#: ../panel-plugin/radio.c:865
+#: ../panel-plugin/xfce4-radio.c:1186
 msgid no
 msgstr nej
 
-#: ../panel-plugin/radio.c:875
-msgid Execute command after startup
-msgstr Kør en kommando efter opstart
-
-#: ../panel-plugin/radio.c:889
-msgid Execute command after shutdown
-msgstr Kør kommando efter nedlukning
-
 # Fortekst til frekvens og forvalg
-#: ../panel-plugin/radio.c:903
+#: ../panel-plugin/xfce4-radio.c:1203
 msgid Mouse scrolling changes
 msgstr Muserulning ændrer
 
-#: ../panel-plugin/radio.c:915
+#: ../panel-plugin/xfce4-radio.c:1214
 msgid frequency
 msgstr frekvens
 
-#: ../panel-plugin/radio.c:923
+#: ../panel-plugin/xfce4-radio.c:1219
 msgid preset
 msgstr forvalg
 
+#. When off
+#: ../panel-plugin/xfce4-radio.c:1238
+msgid When radio is off
+msgstr NÃ¥r radio er slukket
+
+#: ../panel-plugin/xfce4-radio.c:1253
+#: ../panel-plugin/xfce4-radio.c:1316
+msgid Show the label
+msgstr Vis mærkatet
+
+#: ../panel-plugin/xfce4-radio.c:1259
+msgid Show graphics
+msgstr Vis grafik
+
+#. When on
+#: ../panel-plugin/xfce4-radio.c:1273
+msgid When radio is running
+msgstr Når radia er tændt
+
+#: ../panel-plugin/xfce4-radio.c:1292
+msgid Show signal strength
+msgstr Vis signalstyrke
+
+#: ../panel-plugin/xfce4-radio.c:1302
+msgid as a bar
+msgstr som en bjælke
+
+#: ../panel-plugin/xfce4-radio.c:1306
+msgid graphically
+msgstr grafisk
+
+#: ../panel-plugin/xfce4-radio.c:1322
+msgid Show preset names in label
+msgstr Vis forvalgte navne på mærkat
+
+#. Commands
+#: ../panel-plugin/xfce4-radio.c:1338
+msgid Commands
+msgstr Kommandoer
+
+#. Post-startup command
+#: 

[Xfce4-commits] xfce4-notes-plugin:master l10n: Updates to Spanish (Castilian) (es) translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 3c966a8178899045015c6b4bfb82a94007769f12 (commit)
   from b7b117730934d309587f4aceea64edf850af6171 (commit)

commit 3c966a8178899045015c6b4bfb82a94007769f12
Author: Ignacio Velasco el...@elega.com.ar
Date:   Sat Aug 22 15:40:09 2009 +

l10n: Updates to Spanish (Castilian) (es) translation

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

 po/es.po |   42 +++---
 1 files changed, 15 insertions(+), 27 deletions(-)

diff --git a/po/es.po b/po/es.po
index 935045a..e18fd8f 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: \n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-08-22 08:56+0200\n
-PO-Revision-Date: 2009-06-18 14:37-0300\n
+PO-Revision-Date: 2009-08-22 12:47-0300\n
 Last-Translator: elega el...@elega.com.ar\n
 Language-Team: Spanish xfce-i...@xfce.org\n
 MIME-Version: 1.0\n
@@ -23,13 +23,17 @@ msgstr Ideal para sus notas rápidas
 
 #: ../panel-plugin/xfce4-notes-plugin.desktop.in.in.h:2
 #: ../panel-plugin/xfce4-notes-plugin-47.desktop.in.in.h:2
-#: ../panel-plugin/main.vala:72 ../panel-plugin/application.vala:103
-#: ../panel-plugin/window.vala:82 ../panel-plugin/window.vala:127
-#: ../panel-plugin/window.vala:914 ../panel-plugin/xfce4-notes-settings.c:80
+#: ../panel-plugin/main.vala:72
+#: ../panel-plugin/application.vala:103
+#: ../panel-plugin/window.vala:82
+#: ../panel-plugin/window.vala:127
+#: ../panel-plugin/window.vala:914
+#: ../panel-plugin/xfce4-notes-settings.c:80
 msgid Notes
 msgstr Notas
 
-#: ../panel-plugin/application.vala:107 ../panel-plugin/window.vala:917
+#: ../panel-plugin/application.vala:107
+#: ../panel-plugin/window.vala:917
 #, c-format
 msgid Notes %d
 msgstr Notas %d
@@ -38,7 +42,8 @@ msgstr Notas %d
 msgid Rename group
 msgstr Renombrar grupo
 
-#: ../panel-plugin/application.vala:345 ../panel-plugin/window.vala:1037
+#: ../panel-plugin/application.vala:345
+#: ../panel-plugin/window.vala:1037
 #, c-format
 msgid The name %s is already in use
 msgstr El nombre %s ya está en uso
@@ -70,7 +75,8 @@ msgid _Rename
 msgstr _Renombrar
 
 #. Always on top
-#: ../panel-plugin/window.vala:700 ../panel-plugin/xfce4-notes-settings.c:153
+#: ../panel-plugin/window.vala:700
+#: ../panel-plugin/xfce4-notes-settings.c:153
 msgid Always on top
 msgstr Siempre encima
 
@@ -114,7 +120,7 @@ msgstr Ocultar notas de la barra de tareas
 #. Show tabs
 #: ../panel-plugin/xfce4-notes-settings.c:115
 msgid Show tabs in the notes
-msgstr 
+msgstr Mostrar pestañas en las notas
 
 #: ../panel-plugin/xfce4-notes-settings.c:125
 msgid Background:
@@ -191,64 +197,46 @@ msgstr Color de fondo
 
 #~ msgid Red
 #~ msgstr Rojo
-
 #~ msgid Purple
 #~ msgstr Violeta
 
 #, fuzzy
 #~ msgid Choose current note font
 #~ msgstr Elegir tipo de letra de la ventana
-
 #~ msgid Are you sure you want to delete this window?
 #~ msgstr ¿Está seguro de querer eliminar esta ventana?
-
 #~ msgid Window
 #~ msgstr Ventana
-
 #~ msgid _Options
 #~ msgstr _Opciones
-
 #~ msgid Note
 #~ msgstr Nota
-
 #~ msgid R_ename...
 #~ msgstr R_enombrar...
-
 #~ msgid Show tabs
 #~ msgstr Mostrar pestañas
-
 #~ msgid Show on startup
 #~ msgstr Mostrar al inicio
-
 #~ msgid Always
 #~ msgstr Siempre
-
 #~ msgid Never
 #~ msgstr Nunca
-
 #~ msgid Last state
 #~ msgstr Último estado
-
 #~ msgid Rename window
 #~ msgstr Renombrar ventana
-
 #~ msgid Error
 #~ msgstr Error
-
 #~ msgid Unable to rename window
 #~ msgstr Imposible renombrar ventana
-
 #~ msgid Unable to rename note
 #~ msgstr Imposible renombrar nota
-
 #~ msgid Hide arrow button
 #~ msgstr Ocultar botón flecha
-
 #~ msgid Notes plugin for the Xfce4 desktop
 #~ msgstr Complemento de notas para el escritorio Xfce4
-
 #~ msgid Resize grip
 #~ msgstr Pulsador de redimensionado
-
 #~ msgid Xfce 4 Notes Plugin
 #~ msgstr Complemento de notas de Xfce 4
+
___
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 Danish (da) translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 85daabfa4b43cc484ed9dad0d2928f40043d769f (commit)
   from a987f85e0e73a71f75223a3c7afc0b05e56ba873 (commit)

commit 85daabfa4b43cc484ed9dad0d2928f40043d769f
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 15:58:52 2009 +

l10n: Updates to Danish (da) translation

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

 po-doc/da.po |  436 +-
 1 files changed, 220 insertions(+), 216 deletions(-)

diff --git a/po-doc/da.po b/po-doc/da.po
index 1c8dbe8..2c21cf1 100644
--- a/po-doc/da.po
+++ b/po-doc/da.po
@@ -7,9 +7,9 @@
 msgid 
 msgstr 
 Project-Id-Version: Xfce-clipman 1.0.3\n
-POT-Creation-Date: 2009-04-22 22:49+0200\n
+POT-Creation-Date: 2009-07-04 17:40+0200\n
 PO-Revision-Date: \n
-Last-Translator: Lars Christian Jensen larschrjen...@gmail.com\n
+Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Dansk-gruppen da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -19,26 +19,26 @@ msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ../docs/manual/C/xfce4-clipman-plugin.xml.in:90(None)
-msgid @@image: 'images/clipman-menu.png'; 
md5=89f6d4a8a424bc811cd4e5fc6e615e9d
+#: ../docs/manual/C/xfce4-clipman-plugin.xml.in:91(None)
+msgid @@image: 'images/clipman-menu.png'; 
md5=5dbaabeb80055cc0df1d9133d66162f5
 msgstr @@image: 'images/clipman-menu.png'; 
md5=89f6d4a8a424bc811cd4e5fc6e615e9d
 
 #. 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/xfce4-clipman-plugin.xml.in:176(None)
-msgid @@image: 'images/clipman-settings-general.png'; 
md5=94edc7c7757a951f310126c027dd872c
+#: ../docs/manual/C/xfce4-clipman-plugin.xml.in:177(None)
+msgid @@image: 'images/clipman-settings-general.png'; 
md5=0d8f5d2634b310264b96ec82e8b68690
 msgstr @@image: 'images/clipman-settings-general.png'; 
md5=94edc7c7757a951f310126c027dd872c
 
 #. 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/xfce4-clipman-plugin.xml.in:208(None)
-msgid @@image: 'images/clipman-settings-actions.png'; 
md5=6fb9c256043ac683a341d6d68c40adae
+#: ../docs/manual/C/xfce4-clipman-plugin.xml.in:209(None)
+msgid @@image: 'images/clipman-settings-actions.png'; 
md5=08373a01a49eb9f36fe9395bb96527fa
 msgstr @@image: 'images/clipman-settings-actions.png'; 
md5=6fb9c256043ac683a341d6d68c40adae
 
 #. 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/xfce4-clipman-plugin.xml.in:301(None)
-msgid @@image: 'images/clipman-action-dialog.png'; 
md5=a9d968f3ad842bc3aa9b45795c2a837a
+#: ../docs/manual/C/xfce4-clipman-plugin.xml.in:236(None)
+msgid @@image: 'images/clipman-action-dialog.png'; 
md5=8cb733ef13f26327cbc22e5283ac048f
 msgstr @@image: 'images/clipman-action-dialog.png'; 
md5=a9d968f3ad842bc3aa9b45795c2a837a
 
 #: ../docs/manual/C/xfce4-clipman-plugin.xml.in:18(title)
@@ -74,7 +74,7 @@ msgid Introduction
 msgstr Introduktion
 
 #: ../docs/manual/C/xfce4-clipman-plugin.xml.in:55(para)
-msgid @PACKAGE_NAME@ is a clipboard manager for Xfce. It keeps the clipboard 
contents around while it is usually lost when you close an application. It is 
able to handle text and images, and has a feature to execute actions on 
specific text selections by matching them against regular expressions.
+msgid @PACKAGE_NAME@ is a clipboard manager for Xfce. It keeps the clipboard 
contents around while it is usually lost when you close an application. It is 
able to handle text and images, and has a feature to execute actions on 
specific text by matching them against regular expressions.
 msgstr @PACKAGE_NAME@ er en udklipsholderhåndtering til Xfce. Den beholder 
indholdet af udklip, hvorimod det som regel er tabt, når du lukker et program. 
Den er i stand til at håndtere tekst og billeder, og kan udføre handlinger 
på specifikke tekstmarkeringer ved at sammenligne dem med regulære udtryk.
 
 #: ../docs/manual/C/xfce4-clipman-plugin.xml.in:62(title)
@@ -86,420 +86,421 @@ msgid In X11 (all Unix platforms) there are by default 
two clipboards to exchan
 msgstr I X11 (alle Unix platform) er der som standard to udklipsholdere til 
at udveksle data mellem vinduerne. En standard udklipsholder som ændres ved 
manuelle kopier (f.eks. når du markerer en fil og trykker på knappen 
kopiér), og en primær udklipsholder der ændres af markeringer (f.eks. når 
du markerer tekst i et felt).
 
 #: ../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 

[Xfce4-commits] tumbler:master l10n: Added Danish translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 3808cc75d7a39602cc8f1e765fadd8a0c339ef39 (commit)
   from 971c822519dea3d55b2e0a540ad9c3fac183a8b8 (commit)

commit 3808cc75d7a39602cc8f1e765fadd8a0c339ef39
Author: Per Kongstad p_kongs...@op.pl
Date:   Sat Aug 22 16:26:21 2009 +

l10n: Added Danish translation

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

 po/{en_GB.po = da.po} |   67 +--
 1 files changed, 36 insertions(+), 31 deletions(-)

diff --git a/po/en_GB.po b/po/da.po
similarity index 58%
copy from po/en_GB.po
copy to po/da.po
index 543c6e5..7225d9b 100644
--- a/po/en_GB.po
+++ b/po/da.po
@@ -1,100 +1,104 @@
-# en_GB translation for tumbler.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# Jeff Bailes thepizzak...@gmail.com
+# Danish translation of Tumbler.
+# 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\n
+Project-Id-Version: Tumbler 1.0\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-06-08 20:24+0200\n
-PO-Revision-Date: 2009-08-18 21:35+1000\n
-Last-Translator: Jeff Bailes thepizzak...@gmail.com\n
-Language-Team: en_GB\n
+PO-Revision-Date: 2009-08-22 18:22+0100\n
+Last-Translator: Per Kongstad p_kongs...@op.pl\n
+Language-Team: Danish da...@dansk-gruppen.dk\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=UTF-8\n
+Content-Type: text/plain; charset=utf-8\n
 Content-Transfer-Encoding: 8bit\n
+X-Poedit-Language: Danish\n
+X-Poedit-Country: Denmark\n
+X-Poedit-SourceCharset: utf-8\n
 
 #: ../plugins/pixbuf-thumbnailer/pixbuf-thumbnailer-plugin.c:57
 #: ../plugins/xdg-cache/xdg-cache-plugin.c:58
 #, c-format
 msgid Version mismatch: %s
-msgstr Version mismatch: %s
+msgstr Version uoverensstemmelse: %s
 
 #: ../plugins/pixbuf-thumbnailer/pixbuf-thumbnailer-plugin.c:62
 msgid Initializing the Tumbler Pixbuf Thumbnailer plugin
-msgstr Initialising the Tumbler Pixbuf Thumbnailer plugin
+msgstr Initialiserer udvidelsesmodulet Tumbler Pixbuf Thumbnailer
 
 #: ../plugins/pixbuf-thumbnailer/pixbuf-thumbnailer-plugin.c:79
 msgid Shutting down the Tumbler Pixbuf Thumbnailer plugin
-msgstr Shutting down the Tumbler Pixbuf Thumbnailer plugin
+msgstr Lukker udvidelsesmodulet Tumbler Pixbuf Thumbnailer ned
 
 #: ../plugins/xdg-cache/xdg-cache-plugin.c:63
 msgid Initializing the Tumbler XDG cache plugin
-msgstr Initialising the Tumbler XDG cache plugin
+msgstr Initialiserer udvidelsesmodulet Tumbler XDG cache
 
 #: ../plugins/xdg-cache/xdg-cache-plugin.c:81
 msgid Shutting down the Tumbler XDG cache plugin
-msgstr Shutting down the Tumbler XDG cache plugin
+msgstr Lukker udvidelsesmodulet Tumbler XDG cache ned
 
 #: ../plugins/xdg-cache/xdg-cache-thumbnail.c:431
 #, c-format
 msgid Could not save thumbnail to \%s\
-msgstr Could not save thumbnail to \%s\
+msgstr Kunne ikke gemme miniature til \%s\
 
 #. set the application name. Translators: Don't translate Tumbler.
 #: ../tumblerd/main.c:63
 msgid Tumbler Thumbnailing Service
-msgstr Tumbler Thumbnailing Service
+msgstr Tumbler Thumbnailing tjeneste
 
 #: ../tumblerd/main.c:78
 #, c-format
 msgid Failed to connect to the D-Bus session bus: %s
-msgstr Failed to connect to the D-Bus session bus: %s
+msgstr Kunne ikke forbinde til D-Bus-sessionen: %s
 
 #: ../tumblerd/main.c:90
 #, c-format
 msgid Failed to start the thumbnail cache service: %s
-msgstr Failed to start the thumbnail cache service: %s
+msgstr Kunne ikke starte tjenesten thumbnail cache: %s
 
 #: ../tumblerd/main.c:127
 #, c-format
 msgid Failed to load specialized thumbnailers into the registry: %s
-msgstr Failed to load specialised thumbnailers into the registry: %s
+msgstr Kunne ikke indlæse specialiserede miniaturer ind i registret: %s
 
 #: ../tumblerd/main.c:145
 #, c-format
 msgid Failed to start the thumbnailer manager: %s
-msgstr Failed to start the thumbnailer manager: %s
+msgstr Kunne ikke starte miniaturehændteringen: %s
 
 #: ../tumblerd/main.c:163
 #, c-format
 msgid Failed to start the thumbnailer service: %s
-msgstr Failed to start the thumbnailer service: %s
+msgstr Kunne ikke starte tjenesten til miniaturer: %s
 
 #: ../tumblerd/tumbler-cache-service.c:353
 #, c-format
 msgid Another thumbnail cache service is already running
-msgstr Another thumbnail cache service is already running
+msgstr En anden tjeneste til cache af miniaturer kører allerede
 
 #: ../tumblerd/tumbler-manager.c:280
 #, c-format
 msgid Another thumbnailer manager is already running
-msgstr Another thumbnailer manager is already running
+msgstr En anden miniaturehåndtering kører allerede
 
 #: ../tumblerd/tumbler-service.c:418
 #, c-format
 msgid Another generic thumbnailer is already running
-msgstr Another generic thumbnailer is already running
+msgstr En anden generisk 

[Xfce4-commits] xfce4-screenshooter:master l10n: Initial doc translation to Catalan.

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 9edca47af6e7a8a124dd44b8d5dd9d78ba50d53a (commit)
   from 2ed4aa542f07a7b0e33e639d15b2d7fb492004b1 (commit)

commit 9edca47af6e7a8a124dd44b8d5dd9d78ba50d53a
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sat Aug 22 18:52:03 2009 +

l10n: Initial doc translation to Catalan.

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

 po-doc/{id.po = ca.po} |  340 +++
 1 files changed, 167 insertions(+), 173 deletions(-)

diff --git a/po-doc/id.po b/po-doc/ca.po
similarity index 60%
copy from po-doc/id.po
copy to po-doc/ca.po
index b57efad..e2a72e2 100644
--- a/po-doc/id.po
+++ b/po-doc/ca.po
@@ -1,19 +1,22 @@
-# Indonesian translation of the xfce4-screenshooter package.
-# Copyright (C) 2009 Jérôme Guelfucci
-# This file is distributed under the same license as the xfce4-screenshooter
-# package.
-# Andhika Padmawan andhika.padma...@gmail.com, 2009.
+# Catalan translations for xfce4-screenshooter package
+# Traduccions al català del paquet «xfce4-screenshooter».
+# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the
+# xfce4-screenshooter package.
+# Carles Muñoz Gorriz carle...@internautas.org, 2009.
 #
 msgid 
 msgstr 
-Project-Id-Version: xfce4-screenshooter\n
+Project-Id-Version: xfce4-screenshooter 1.0.0\n
+Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-05-31 00:15+0200\n
-PO-Revision-Date: 2009-08-11 00:20-0400\n
-Last-Translator: Andhika Padmawan andhika.padma...@gmail.com\n
-Language-Team: Indonesian translation-team...@lists.sourceforge.net\n
+PO-Revision-Date: 2009-08-22 20:35+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
 Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
@@ -47,7 +50,7 @@ msgstr 
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:12(title)
 msgid Xfce4 Screenshooter
-msgstr Xfce4 Screenshooter
+msgstr Capturador de pantalla de Xfce4
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:17(year)
 msgid 2008
@@ -70,12 +73,13 @@ msgid 
 complete license text is available from the ulink type=\http\ url=
 \http://www.gnu.org/\;Free Software Foundation/ulink.
 msgstr 
-Izin diberikan untuk menyalin, mendistribusikan dan/atau memodifikasi 
-dokumen ini di bawah perjanjian Lisensi Dokumentasi Bebas GNU, versi 1.1 
-atau versi mapapun setelahnya yang dipublikasikan oleh Free Software 
-Foundation; tanpa Bagian Invarian, tanpa Teks Sampul-Depan, dan tanpa Teks 
-Sampul-Belakang. Teks lisensi selengkapnya tersedia dari ulink type=\http
-\ url=\http://www.gnu.org/\;Free Software Foundation/ulink.
+Teniu el dret de còpia, distribució i/o modificació d'aquest document 
segons 
+els termes de la llicència «GNU Free Documentation», versió 1.1 o 
qualsevol 
+posterior publicada per la Free Software Foundation; sense seccions 
+invariables, sense textos de portada i sense textos de contraportada («with 
+no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts»). El 
+text complert de la llicència està disponible a ulink type=\http\ url=
+\http://www.gnu.org/\;Free Software Foundation/ulink.
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:35(firstname)
 msgid Jérôme
@@ -92,11 +96,12 @@ msgstr jero...@xfce.org
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:43(releaseinfo)
 msgid This manual describes version @PACKAGE_VERSION@ of Xfce4 Screenshooter.
 msgstr 
-Manual ini menjelaskan versi @PACKAGE_VERSION@ dari Xfce4 Screenshooter.
+Aquest manual descriu la versió @PACKAGE_VERSION@ del capturador de 
+pantalles de Xfce4.
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:49(title)
 msgid Introduction to Xfce4 Screenshooter
-msgstr Pengantar ke Xfce4 Screenshooter
+msgstr Introducció al capturador de pantalla de Xfce4
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:51(para)
 msgid 
@@ -106,11 +111,10 @@ msgid 
 save it to a PNG file, copy it to the clipboard, or open it using another 
 application.
 msgstr 
-Aplikasi ini memungkinkan anda untuk menangkap seluruh layar, jendela yang 
-aktif atau daerah terpilih. Anda dapat mengatur jeda yang diperlukan sebelum 
-cuplikan layar diambil dan aksi yang akan dilakukan dengan cuplikan layar: 
-menyimpannya dalam berkas PNG, salin ke papan klip, atau membukanya dengan 
-aplikasi lain.
+Aquesta aplicació us permet fer captures de tota la pantalla, de la finestra 

+activa o d'una regió seleccionada. Podeu fixar el retard fins que es 
+realitza la captura i el que es farà amb ella: desar-la com a un fitxer PNG, 

+copiar-la al porta-retalls o obrir-la amb alguna aplicació.
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:59(para)
 

[Xfce4-commits] xfce4-screenshooter:master l10n: Updates to Spanish (Castilian) (es) translation

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to e5ee7cdb3a3ad69ec40205f7a91955b9f68b4d61 (commit)
   from 9edca47af6e7a8a124dd44b8d5dd9d78ba50d53a (commit)

commit e5ee7cdb3a3ad69ec40205f7a91955b9f68b4d61
Author: Ignacio Velasco el...@elega.com.ar
Date:   Sat Aug 22 19:16:12 2009 +

l10n: Updates to Spanish (Castilian) (es) translation

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

 po-doc/es.po |  534 +++---
 1 files changed, 139 insertions(+), 395 deletions(-)

diff --git a/po-doc/es.po b/po-doc/es.po
index 9dfdf1a..9e53c9e 100644
--- a/po-doc/es.po
+++ b/po-doc/es.po
@@ -1,36 +1,31 @@
 msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
-POT-Creation-Date: 2009-07-08 00:07+0200\n
-PO-Revision-Date: 2009-06-20 19:30-0300\n
+POT-Creation-Date: 2009-05-31 00:15+0200\n
+PO-Revision-Date: 2009-08-22 16:22-0300\n
 Last-Translator: elega el...@elega.com.ar\n
 Language-Team: LANGUAGE l...@li.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
 
 #. 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/xfce4-screenshooter.xml.in:85(None)
-msgid 
-@@image: 'images/xfce4-screenshooter-dialog.png'; 
-md5=81327b7424d7b3498e19f2c8d4675b16
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:90(None)
+msgid @@image: 'images/xfce4-screenshooter-dialog.png'; 
md5=4deee4014eb81c2da3f90353ecb27a3b
 msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ../docs/manual/C/xfce4-screenshooter.xml.in:232(None)
-msgid 
-@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
-md5=c8102c88e978eb7ef63994f2648f5ae6
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:237(None)
+msgid @@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=90801d9f563892b813fb680fa6c7dc66
 msgstr 
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
-#: ../docs/manual/C/xfce4-screenshooter.xml.in:259(None)
-msgid 
-@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
-md5=468def960a376d5a856f2fcb3b35daf1
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:264(None)
+msgid @@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=b626fbaeac959c97506f87bc3e93407a
 msgstr 
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:12(title)
@@ -50,20 +45,8 @@ msgid Jérôme Guelfucci
 msgstr Jérôme Guelfucci
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:23(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 
-Se concede permiso para copiar, distribuir y/o modificar éste documento bajo 

-los términos de la GNU Free Documentation License, Versión 1.1 o cualquier 
-versión posterior publicada por la Free Software Foundation, sin Secciones 
-Invariantes, sin textos de cubierta delantera, y sin textos de cubierta 
-trasera. El texto completo de la licencia está disponible desde la ulink 
-type=\http\ url=\http://www.gnu.org/\;Free Software Foundation/ulink.
+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 Se concede permiso para copiar, distribuir y/o modificar éste 
documento bajo los términos de la GNU Free Documentation License, Versión 1.1 
o cualquier versión posterior publicada por la Free Software Foundation, sin 
Secciones Invariantes, sin textos de cubierta delantera, y sin textos de 
cubierta trasera. El texto completo de la licencia está disponible desde la 
ulink type=\http\ url=\http://www.gnu.org/\;Free Software 
Foundation/ulink.
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:35(firstname)
 msgid Jérôme
@@ -79,493 +62,254 @@ msgstr jero...@xfce.org
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:43(releaseinfo)
 msgid This manual describes version @PACKAGE_VERSION@ of Xfce4 Screenshooter.
-msgstr 
-Éste manual describe la versión @PACKAGE_VERSION@ de Xfce4 Screenshooter.
+msgstr Éste manual describe la versión @PACKAGE_VERSION@ de 

[Xfce4-commits] terminal:master l10n: Initial catalan po-doc translation.

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to 8929373d2b2c49f3b029f47b62b04d51226ce33b (commit)
   from d0e1d8d64d0b017cecd79310a5909ce04c01674f (commit)

commit 8929373d2b2c49f3b029f47b62b04d51226ce33b
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sat Aug 22 19:16:55 2009 +

l10n: Initial catalan po-doc translation.

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

 po-doc/{gl.po = ca.po} |  478 ---
 1 files changed, 206 insertions(+), 272 deletions(-)

diff --git a/po-doc/gl.po b/po-doc/ca.po
similarity index 84%
copy from po-doc/gl.po
copy to po-doc/ca.po
index 283e496..ba9a8c5 100644
--- a/po-doc/gl.po
+++ b/po-doc/ca.po
@@ -1,114 +1,134 @@
-# Galician translation of terminal 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
+# Catalan translations for xfce4-screenshooter package
+# Traduccions al català del paquet «xfce4-screenshooter».
+# Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the
+# xfce4-screenshooter package.
+# Carles Muñoz Gorriz carle...@internautas.org, 2009.
 #
 msgid 
 msgstr 
-Project-Id-Version: PACKAGE VERSION\n
-POT-Creation-Date: 2009-08-19 00:05+0200\n
-PO-Revision-Date: 2009-07-13 18:21+0100\n
-Last-Translator: Leandro Regueiro leandro.regue...@gmail.com\n
-Language-Team: Galician proxe...@trasno.net\n
+Project-Id-Version: Terminal\n
+POT-Creation-Date: 2009-07-13 18:00+0200\n
+PO-Revision-Date: 2009-08-22 21:14+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
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=2; plural=(n!=1);\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Poedit-Language: Catalan\n
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../doc/C/Terminal.xml.in:196(None)
 msgid 
 @@image: 'images/terminal-first-time.png'; 
-md5=c28f799b526627f477f05517df57486d
+md5=f09a64629435a6c73438e78a5ef2dabc
 msgstr 
+@@image: 'images/terminal-first-time.png'; 
+md5=f09a64629435a6c73438e78a5ef2dabc
 
 #. 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.
 #: ../doc/C/Terminal.xml.in:263(None)
 msgid 
 @@image: 'images/terminal-multiple-tabs.png'; 
-md5=50bde64cde013ee5be96056c5ba139d9
+md5=c88d7fe610afa0178de42316cbda448e
 msgstr 
+@@image: 'images/terminal-multiple-tabs.png'; 
+md5=c88d7fe610afa0178de42316cbda448e
 
 #. 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.
 #: ../doc/C/Terminal.xml.in:539(None)
 msgid 
 @@image: 'images/terminal-set-title.png'; 
-md5=1d2ab181828f8ed4b328a99df0a3b444
+md5=c4c8a1d7014a4f37b27b0f6fd1274f71
 msgstr 
+@@image: 'images/terminal-set-title.png'; 
+md5=c4c8a1d7014a4f37b27b0f6fd1274f71
 
 #. 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.
 #: ../doc/C/Terminal.xml.in:615(None)
 msgid 
-@@image: 'images/terminal-toolbars.png'; md5=f4b348a0b8799e71648979449b2a4a07
+@@image: 'images/terminal-toolbars.png'; md5=17b0db875a2a74e5167b3401eb6a43cb
 msgstr 
+@@image: 'images/terminal-toolbars.png'; md5=17b0db875a2a74e5167b3401eb6a43cb
 
 #. 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.
 #: ../doc/C/Terminal.xml.in:651(None)
 msgid 
 @@image: 'images/terminal-edit-preferences.png'; 
-md5=0eabb35f7c1aaaba6047386074e463fd
+md5=5a91f13083c4d48b6cfa6c1e58c5472c
 msgstr 
+@@image: 'images/terminal-edit-preferences.png'; 
+md5=5a91f13083c4d48b6cfa6c1e58c5472c
 
 #. 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.
 #: ../doc/C/Terminal.xml.in:671(None)
 msgid 
 @@image: 'images/terminal-preferences-general.png'; 
-md5=423f22e67374de38d133451076c6f982
+md5=38e052670dfef1ab9665ad96e5dd211a
 msgstr 
+@@image: 'images/terminal-preferences-general.png'; 
+md5=38e052670dfef1ab9665ad96e5dd211a
 
 #. 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.
 #: ../doc/C/Terminal.xml.in:752(None)
 msgid 
 @@image: 'images/terminal-preferences-appearance.png'; 
-md5=60ea6321b41f48b5b5f9f6f8b884607a

[Xfce4-commits] thunar:master Protect the interfaces types and use g_type_register_static_simple where possible.

2009-08-22 Thread Nick Schermer
Updating branch refs/heads/master
 to 09610f85d7e8016a443510636aeed4554dfcf044 (commit)
   from ce34ba48e5e38ea750c27df4a8aec94b39508f42 (commit)

commit 09610f85d7e8016a443510636aeed4554dfcf044
Author: Nick Schermer n...@xfce.org
Date:   Sat Aug 22 20:50:06 2009 +0200

Protect the interfaces types and use g_type_register_static_simple where 
possible.

 thunar/thunar-browser.c  |   11 +++
 thunar/thunar-component.c|   31 ++-
 thunar/thunar-location-bar.c |   29 +
 thunar/thunar-navigator.c|9 ++---
 thunar/thunar-side-pane.c|   29 +
 thunar/thunar-view.c |   29 +
 6 files changed, 66 insertions(+), 72 deletions(-)

diff --git a/thunar/thunar-browser.c b/thunar/thunar-browser.c
index 12ae250..e9e08fd 100644
--- a/thunar/thunar-browser.c
+++ b/thunar/thunar-browser.c
@@ -57,9 +57,10 @@ struct _PokeVolumeData
 GType
 thunar_browser_get_type (void)
 {
-  static GType type = G_TYPE_INVALID;
-  
-  if (G_UNLIKELY (type == G_TYPE_INVALID))
+  static volatile gsize type__volatile = 0;
+  GType type;
+
+  if (g_once_init_enter (type__volatile))
 {
   type = g_type_register_static_simple (G_TYPE_INTERFACE,
 I_(ThunarBrowser),
@@ -70,9 +71,11 @@ thunar_browser_get_type (void)
 0);
 
   g_type_interface_add_prerequisite (type, G_TYPE_OBJECT);
+
+  g_once_init_leave (type__volatile, type);
 }
 
-  return type;
+  return type__volatile;
 }
 
 
diff --git a/thunar/thunar-component.c b/thunar/thunar-component.c
index 46906ac..66ea09f 100644
--- a/thunar/thunar-component.c
+++ b/thunar/thunar-component.c
@@ -35,28 +35,25 @@ static void thunar_component_class_init (gpointer klass);
 GType
 thunar_component_get_type (void)
 {
-  static GType type = G_TYPE_INVALID;
+  static volatile gsize type__volatile = 0;
+  GType type;
 
-  if (G_UNLIKELY (type == G_TYPE_INVALID))
+  if (g_once_init_enter (type__volatile))
 {
-  static const GTypeInfo info =
-  {
-sizeof (ThunarComponentIface),
-NULL,
-NULL,
-(GClassInitFunc) thunar_component_class_init,
-NULL,
-NULL,
-0,
-0,
-NULL,
-  };
-
-  type = g_type_register_static (G_TYPE_INTERFACE, I_(ThunarComponent), 
info, 0);
+  type = g_type_register_static_simple (G_TYPE_INTERFACE,
+I_(ThunarComponent),
+sizeof (ThunarComponentIface),
+(GClassInitFunc) 
thunar_component_class_init,
+0,
+NULL,
+0);
+
   g_type_interface_add_prerequisite (type, THUNAR_TYPE_NAVIGATOR);
+
+  g_once_init_leave (type__volatile, type);
 }
 
-  return type;
+  return type__volatile;
 }
 
 
diff --git a/thunar/thunar-location-bar.c b/thunar/thunar-location-bar.c
index ad89ebc..61122a9 100644
--- a/thunar/thunar-location-bar.c
+++ b/thunar/thunar-location-bar.c
@@ -29,28 +29,25 @@
 GType
 thunar_location_bar_get_type (void)
 {
-  static GType type = G_TYPE_INVALID;
+  static volatile gsize type__volatile = 0;
+  GType type;
 
-  if (G_UNLIKELY (type == G_TYPE_INVALID))
+  if (g_once_init_enter (type__volatile))
 {
-  static const GTypeInfo info =
-  {
-sizeof (ThunarLocationBarIface),
-NULL,
-NULL,
-NULL,
-NULL,
-NULL,
-0,
-0,
-NULL,
-  };
+  type = g_type_register_static_simple (G_TYPE_INTERFACE,
+I_(ThunarLocationBar),
+sizeof (ThunarLocationBarIface),
+NULL,
+0,
+NULL,
+0);
 
-  type = g_type_register_static (G_TYPE_INTERFACE, 
I_(ThunarLocationBar), info, 0);
   g_type_interface_add_prerequisite (type, THUNAR_TYPE_COMPONENT);
+
+  g_once_init_leave (type__volatile, type);
 }
 
-  return type;
+  return type__volatile;
 }
 
 
diff --git a/thunar/thunar-navigator.c b/thunar/thunar-navigator.c
index 9e6f4f2..c7def2f 100644
--- a/thunar/thunar-navigator.c
+++ b/thunar/thunar-navigator.c
@@ -46,9 +46,10 @@ static guint navigator_signals[LAST_SIGNAL];
 GType
 thunar_navigator_get_type (void)
 {
-  static GType type = G_TYPE_INVALID;
+  static volatile gsize type__volatile = 0;
+  GType type;
 
-  if (G_UNLIKELY (type == G_TYPE_INVALID))
+  if (g_once_init_enter (type__volatile))
 {
   static const GTypeInfo info =
   {
@@ -65,9 +66,11 @@ 

[Xfce4-commits] thunar:master Use new tooltip API.

2009-08-22 Thread Nick Schermer
Updating branch refs/heads/master
 to 1e2096fcb6bacaadc134d1d99d085532c3df819e (commit)
   from 293bfc66c650d52d4d87b4f6bc7c9f7bd1278934 (commit)

commit 1e2096fcb6bacaadc134d1d99d085532c3df819e
Author: Nick Schermer n...@xfce.org
Date:   Sat Aug 22 21:17:55 2009 +0200

Use new tooltip API.

 thunar/thunar-chooser-dialog.c  |4 ++--
 thunar/thunar-gtk-extensions.c  |   14 --
 thunar/thunar-permissions-chooser.c |8 
 thunar/thunar-preferences-dialog.c  |   28 ++--
 thunar/thunar-properties-dialog.c   |2 +-
 thunar/thunar-renamer-dialog.c  |4 ++--
 thunar/thunar-size-label.c  |2 +-
 7 files changed, 28 insertions(+), 34 deletions(-)

diff --git a/thunar/thunar-chooser-dialog.c b/thunar/thunar-chooser-dialog.c
index fda109d..b44e54d 100644
--- a/thunar/thunar-chooser-dialog.c
+++ b/thunar/thunar-chooser-dialog.c
@@ -255,8 +255,8 @@ thunar_chooser_dialog_init (ThunarChooserDialog *dialog)
 
   /* create the Custom command expand */
   dialog-custom_expander = gtk_expander_new_with_mnemonic (_(Use a _custom 
command:));
-  thunar_gtk_widget_set_tooltip (dialog-custom_expander, _(Use a custom 
command for an application that is not 
-available from 
the above application list.));
+  gtk_widget_set_tooltip_text (dialog-custom_expander, _(Use a custom 
command for an application that is not 
+  available from the 
above application list.));
   exo_binding_new_with_negation (G_OBJECT (dialog-custom_expander), 
expanded, G_OBJECT (dialog-tree_view), sensitive);
   g_signal_connect (G_OBJECT (dialog-custom_expander), notify::expanded, 
G_CALLBACK (thunar_chooser_dialog_notify_expanded), dialog);
   gtk_box_pack_start (GTK_BOX (box), dialog-custom_expander, FALSE, FALSE, 0);
diff --git a/thunar/thunar-gtk-extensions.c b/thunar/thunar-gtk-extensions.c
index 952f93a..65d0439 100644
--- a/thunar/thunar-gtk-extensions.c
+++ b/thunar/thunar-gtk-extensions.c
@@ -259,32 +259,26 @@ thunar_gtk_ui_manager_get_action_by_name (GtkUIManager 
*ui_manager,
  * @...: additional arguments for @format.
  *
  * Sets the tooltip for the @widget to a string generated
- * from the @format and the additional arguments in @...!---,
- * utilizing the shared #GtkTooltips instance.
+ * from the @format and the additional arguments in @...!---.
  **/
 void
 thunar_gtk_widget_set_tooltip (GtkWidget   *widget,
const gchar *format,
...)
 {
-  static GtkTooltips *tooltips = NULL;
-  va_list var_args;
-  gchar  *tooltip;
+  va_list  var_args;
+  gchar   *tooltip;
 
   _thunar_return_if_fail (GTK_IS_WIDGET (widget));
   _thunar_return_if_fail (g_utf8_validate (format, -1, NULL));
 
-  /* allocate the shared tooltips on-demand */
-  if (G_UNLIKELY (tooltips == NULL))
-tooltips = gtk_tooltips_new ();
-
   /* determine the tooltip */
   va_start (var_args, format);
   tooltip = g_strdup_vprintf (format, var_args);
   va_end (var_args);
 
   /* setup the tooltip for the widget */
-  gtk_tooltips_set_tip (tooltips, widget, tooltip, NULL);
+  gtk_widget_set_tooltip_text (widget, tooltip);
 
   /* release the tooltip */
   g_free (tooltip);
diff --git a/thunar/thunar-permissions-chooser.c 
b/thunar/thunar-permissions-chooser.c
index 7e1faff..7e26dd0 100644
--- a/thunar/thunar-permissions-chooser.c
+++ b/thunar/thunar-permissions-chooser.c
@@ -387,7 +387,7 @@ thunar_permissions_chooser_init (ThunarPermissionsChooser 
*chooser)
   gtk_widget_show (hbox);
 
   chooser-fixperm_button = gtk_button_new_with_mnemonic (_(Correct folder 
permissions...));
-  thunar_gtk_widget_set_tooltip (chooser-fixperm_button, _(Click here to 
automatically fix the folder permissions.));
+  gtk_widget_set_tooltip_text (chooser-fixperm_button, _(Click here to 
automatically fix the folder permissions.));
   g_signal_connect_swapped (G_OBJECT (chooser-fixperm_button), clicked, 
G_CALLBACK (thunar_permissions_chooser_fixperm_clicked), chooser);
   exo_binding_new (G_OBJECT (chooser-fixperm_button), visible, G_OBJECT 
(hbox), visible);
   gtk_box_pack_end (GTK_BOX (hbox), chooser-fixperm_button, FALSE, FALSE, 0);
@@ -403,7 +403,7 @@ thunar_permissions_chooser_init (ThunarPermissionsChooser 
*chooser)
   gtk_box_pack_start (GTK_BOX (hbox), chooser-job_progress, TRUE, TRUE, 0);
 
   button = gtk_button_new ();
-  thunar_gtk_widget_set_tooltip (button, _(Stop applying permissions 
recursively.));
+  gtk_widget_set_tooltip_text (button, _(Stop applying permissions 
recursively.));
   g_signal_connect_swapped (G_OBJECT (button), clicked, G_CALLBACK 
(thunar_permissions_chooser_job_cancel), chooser);
   gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);
   gtk_widget_show (button);
@@ -554,8 +554,8 @@ thunar_permissions_chooser_ask_recursive 
(ThunarPermissionsChooser 

[Xfce4-commits] thunar:master Use g_slice_ functions directly and drop macros.

2009-08-22 Thread Nick Schermer
Updating branch refs/heads/master
 to 293bfc66c650d52d4d87b4f6bc7c9f7bd1278934 (commit)
   from 3cc156932e03c881a9643e917abf42ff3ad4d48a (commit)

commit 293bfc66c650d52d4d87b4f6bc7c9f7bd1278934
Author: Nick Schermer n...@xfce.org
Date:   Sat Aug 22 21:11:26 2009 +0200

Use g_slice_ functions directly and drop macros.

 thunar/thunar-browser.c   |8 
 thunar/thunar-clipboard-manager.c |4 ++--
 thunar/thunar-exec.c  |4 ++--
 thunar/thunar-launcher.c  |8 
 thunar/thunar-private.h   |   17 -
 thunar/thunar-renamer-model.c |4 ++--
 thunar/thunar-renamer-pair.c  |4 ++--
 thunar/thunar-shortcuts-model.c   |   16 
 thunar/thunar-thumbnailer.c   |   12 ++--
 thunar/thunar-transfer-job.c  |6 +++---
 thunar/thunar-tree-model.c|6 +++---
 thunar/thunar-tree-view.c |4 ++--
 12 files changed, 38 insertions(+), 55 deletions(-)

diff --git a/thunar/thunar-browser.c b/thunar/thunar-browser.c
index e9e08fd..197d646 100644
--- a/thunar/thunar-browser.c
+++ b/thunar/thunar-browser.c
@@ -93,7 +93,7 @@ thunar_browser_poke_file_data_new (ThunarBrowser
*browser,
   _thunar_return_val_if_fail (THUNAR_IS_FILE (source), NULL);
   _thunar_return_val_if_fail (THUNAR_IS_FILE (file), NULL);
 
-  poke_data = _thunar_slice_new0 (PokeFileData);
+  poke_data = g_slice_new0 (PokeFileData);
   poke_data-browser = g_object_ref (browser);
   poke_data-source = g_object_ref (source);
   poke_data-file = g_object_ref (file);
@@ -117,7 +117,7 @@ thunar_browser_poke_file_data_free (PokeFileData *poke_data)
   g_object_unref (poke_data-source);
   g_object_unref (poke_data-file);
 
-  _thunar_slice_free (PokeFileData, poke_data);
+  g_slice_free (PokeFileData, poke_data);
 }
 
 
@@ -133,7 +133,7 @@ thunar_browser_poke_volume_data_new (ThunarBrowser  
*browser,
   _thunar_return_val_if_fail (THUNAR_IS_BROWSER (browser), NULL);
   _thunar_return_val_if_fail (G_IS_VOLUME (volume), NULL);
 
-  poke_data = _thunar_slice_new0 (PokeVolumeData);
+  poke_data = g_slice_new0 (PokeVolumeData);
   poke_data-browser = g_object_ref (browser);
   poke_data-volume = g_object_ref (volume);
   poke_data-func = func;
@@ -154,7 +154,7 @@ thunar_browser_poke_volume_data_free (PokeVolumeData 
*poke_data)
   g_object_unref (poke_data-browser);
   g_object_unref (poke_data-volume);
 
-  _thunar_slice_free (PokeVolumeData, poke_data);
+  g_slice_free (PokeVolumeData, poke_data);
 }
 
 
diff --git a/thunar/thunar-clipboard-manager.c 
b/thunar/thunar-clipboard-manager.c
index ee91391..fa40b99 100644
--- a/thunar/thunar-clipboard-manager.c
+++ b/thunar/thunar-clipboard-manager.c
@@ -335,7 +335,7 @@ thunar_clipboard_manager_contents_received (GtkClipboard
 *clipboard,
 g_closure_unref (request-new_files_closure);
   g_object_unref (G_OBJECT (request-manager));
   g_object_unref (request-target_file);
-  _thunar_slice_free (ThunarClipboardPasteRequest, request);
+  g_slice_free (ThunarClipboardPasteRequest, request);
 }
 
 
@@ -643,7 +643,7 @@ thunar_clipboard_manager_paste_files 
(ThunarClipboardManager *manager,
   _thunar_return_if_fail (widget == NULL || GTK_IS_WIDGET (widget));
 
   /* prepare the paste request */
-  request = _thunar_slice_new0 (ThunarClipboardPasteRequest);
+  request = g_slice_new0 (ThunarClipboardPasteRequest);
   request-manager = g_object_ref (G_OBJECT (manager));
   request-target_file = g_object_ref (target_file);
   request-widget = widget;
diff --git a/thunar/thunar-exec.c b/thunar/thunar-exec.c
index f2f5a40..e4a2358 100644
--- a/thunar/thunar-exec.c
+++ b/thunar/thunar-exec.c
@@ -305,7 +305,7 @@ tvsn_startup_timeout_destroy (gpointer data)
   NULL, NULL);
 
   /* release the startup data */
-  _thunar_slice_free (TsnStartupData, startup_data);
+  g_slice_free (TsnStartupData, startup_data);
 }
 
 static void
@@ -484,7 +484,7 @@ thunar_exec_on_screen (GdkScreen   *screen,
   else
 {
   /* schedule a startup notification timeout */
-  startup_data = _thunar_slice_new (TsnStartupData);
+  startup_data = g_slice_new (TsnStartupData);
   startup_data-sn_launcher = sn_launcher;
   startup_data-timeout_id = g_timeout_add_full (G_PRIORITY_LOW, 
TSN_STARTUP_TIMEOUT, tvsn_startup_timeout,
  startup_data, 
tvsn_startup_timeout_destroy);
diff --git a/thunar/thunar-launcher.c b/thunar/thunar-launcher.c
index 8482060..4c2279d 100644
--- a/thunar/thunar-launcher.c
+++ b/thunar/thunar-launcher.c
@@ -1270,7 +1270,7 @@ thunar_launcher_mount_data_new (ThunarLauncher *launcher,
 
   _thunar_return_val_if_fail (THUNAR_IS_LAUNCHER (launcher), NULL);
 
-  data = _thunar_slice_new0 (ThunarLauncherMountData);
+  data = g_slice_new0 (ThunarLauncherMountData);
   data-launcher = g_object_ref (launcher);
   data-files = 

[Xfce4-commits] xfdesktop:master set mnemonic widget properly for icon type/size labels (bug 5555)

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/master
 to 9b86db1b4ee9e53fb42dc4397c78254a91be10a7 (commit)
   from 60e01c8b83aa6f83e8a1e5cb734a0d7fba16e328 (commit)

commit 9b86db1b4ee9e53fb42dc4397c78254a91be10a7
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 13:39:48 2009 -0700

set mnemonic widget properly for icon type/size labels (bug )

 settings/xfdesktop-settings.glade |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/settings/xfdesktop-settings.glade 
b/settings/xfdesktop-settings.glade
index 021f73f..1aa0732 100644
--- a/settings/xfdesktop-settings.glade
+++ b/settings/xfdesktop-settings.glade
@@ -950,6 +950,7 @@ Control/property
 property 
name=eventsGDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | 
GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK/property
 property name=label 
translatable=yesIcon _type:/property
 property 
name=use_underlineTrue/property
+property 
name=mnemonic_widgetcombo_icons/property
   /widget
   packing
 property 
name=expandFalse/property
@@ -984,6 +985,7 @@ File/launcher icons/property
 property 
name=eventsGDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | 
GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK/property
 property name=label 
translatable=yesIcon _size:/property
 property 
name=use_underlineTrue/property
+property 
name=mnemonic_widgetspin_icon_size/property
   /widget
   packing
 property 
name=expandFalse/property
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce-git-hooks:master add hook script to send update to CIA

2009-08-22 Thread Brian J . Tarricone
Updating branch refs/heads/master
 to 80d89ec746f35a186df061cd53d523532d24bb87 (commit)
   from 6572ccb033397ef2bdf83567ed8faf531a800356 (commit)

commit 80d89ec746f35a186df061cd53d523532d24bb87
Author: Brian J. Tarricone br...@tarricone.org
Date:   Sat Aug 22 14:22:21 2009 -0700

add hook script to send update to CIA

 hooks/update-04-send-cia-update |   10 ++
 update  |3 ++-
 2 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/hooks/update-04-send-cia-update b/hooks/update-04-send-cia-update
new file mode 100755
index 000..a2854dc
--- /dev/null
+++ b/hooks/update-04-send-cia-update
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+refname=$1
+oldhead=$2
+newhead=$3
+for merged in $(git rev-list ${oldhead}..${newhead} | tac) ; do
+  /usr/local/bin/ciabot.bash ${refname} ${merged}
+done
+
+exit 0
diff --git a/update b/update
index f859c62..d945826 100755
--- a/update
+++ b/update
@@ -33,5 +33,6 @@ unset parent path
 
 $XFCE_GIT_HOOK_DIR/hooks/update-01-history-integrity $@ 
 $XFCE_GIT_HOOK_DIR/hooks/update-02-check-permissions $@ 
-$XFCE_GIT_HOOK_DIR/hooks/update-03-send-commit-mails $@
+$XFCE_GIT_HOOK_DIR/hooks/update-03-send-commit-mails $@ 
+$XFCE_GIT_HOOK_DIR/hooks/update-04-send-cia-update $@
 exit $?
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2009-08-22 Thread Transifex
Updating branch refs/heads/master
 to eabbeb699efc345e037f566d23e8e54750cbb37f (commit)
   from 319bec7957d126c2a23fd1cce2aecc8a4b01f932 (commit)

commit eabbeb699efc345e037f566d23e8e54750cbb37f
Author: Nuno Miguel nu...@netcabo.pt
Date:   Sat Aug 22 21:33:27 2009 +

l10n: Updates to Portuguese (pt) translation

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

 po/pt.po |  237 --
 1 files changed, 77 insertions(+), 160 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index f1df456..a34489f 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -9,8 +9,8 @@ msgstr 
 Project-Id-Version: xfce4-session 4.6.0\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-07-26 19:15-0700\n
-PO-Revision-Date: 2009-03-15 16:28+0100\n
-Last-Translator: Nuno Miguel nu...@netcabo.pt\n
+PO-Revision-Date: 2009-08-22 22:24+0100\n
+Last-Translator: \n
 Language-Team: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -35,9 +35,7 @@ msgstr Erro de ficheiro de tema
 
 #: ../engines/balou/config.c:342
 msgid Please check that the file is a valid splash theme archive.
-msgstr 
-Por favor verifique se o ficheiro é um arquivo de tema de ecrã inicial 
-válido.
+msgstr Por favor verifique se o ficheiro é um arquivo de tema de ecrã 
inicial válido.
 
 #: ../engines/balou/config.c:396
 #, c-format
@@ -133,110 +131,96 @@ msgid Simple Splash Engine
 msgstr Motor de ecrã inicial Simple
 
 #: ../panel-plugin/xfsm-logout-plugin.c:56
-#, fuzzy
 msgid Session
-msgstr _Sessão
+msgstr Sessão
 
 #: ../panel-plugin/xfsm-logout-plugin.c:57
 msgid Loc_k screen
-msgstr 
+msgstr Bloq_uear ecrã
 
 #: ../panel-plugin/xfsm-logout-plugin.c:58
 #: ../panel-plugin/xfsm-logout-plugin.c:98
-#, fuzzy
 msgid _Suspend
-msgstr Suspender
+msgstr _Suspender
 
 #: ../panel-plugin/xfsm-logout-plugin.c:59
 #: ../panel-plugin/xfsm-logout-plugin.c:105
-#, fuzzy
 msgid _Hibernate
-msgstr Hibernar
+msgstr _Hibernar
 
 #: ../panel-plugin/xfsm-logout-plugin.c:60
 #: ../panel-plugin/xfsm-logout-plugin.c:91
 msgid _Reboot
-msgstr 
+msgstr _Reiniciar
 
 #: ../panel-plugin/xfsm-logout-plugin.c:61
 #: ../panel-plugin/xfsm-logout-plugin.c:84
-#, fuzzy
 msgid Shut _down
-msgstr Desligar
+msgstr _Desligar
 
 #: ../panel-plugin/xfsm-logout-plugin.c:62
 #: ../panel-plugin/xfsm-logout-plugin.c:77
-#, fuzzy
 msgid _Log out
-msgstr Sair da sessão
+msgstr _Terminar
 
 #. XFSM_SHUTDOWN_ASK
 #. XFSM_SHUTDOWN_LOGOUT
 #: ../panel-plugin/xfsm-logout-plugin.c:75
-#, fuzzy
 msgid Are you sure you want to log out?
-msgstr Tem a certeza que quer terminar \%s\?
+msgstr Tem a certeza que quer sair da sessão?
 
 #: ../panel-plugin/xfsm-logout-plugin.c:76
 #, c-format
 msgid You will be logged out in %u seconds.
-msgstr 
+msgstr Irá terminar sessão em %u segundos
 
 #: ../panel-plugin/xfsm-logout-plugin.c:79
 msgid Failed to log out.
-msgstr 
+msgstr Falhou a saída da sessão.
 
 #. XFSM_SHUTDOWN_HALT
 #: ../panel-plugin/xfsm-logout-plugin.c:82
-#, fuzzy
 msgid Are you sure you want to shut down?
-msgstr Tem a certeza que quer terminar \%s\?
+msgstr Tem a certeza que quer desligar?
 
 #: ../panel-plugin/xfsm-logout-plugin.c:83
 #, c-format
 msgid Your system will shut down in %u seconds.
-msgstr 
+msgstr O sistema será desligado em %u segundos.
 
 #: ../panel-plugin/xfsm-logout-plugin.c:86
-#, fuzzy
 msgid Failed to shut down.
-msgstr Falhou a suspensão da sessão
+msgstr Falhou o encerramento.
 
 #. XFSM_SHUTDOWN_REBOOT
 #: ../panel-plugin/xfsm-logout-plugin.c:89
-#, fuzzy
 msgid Are you sure you want to reboot?
-msgstr Tem a certeza que quer terminar \%s\?
+msgstr Tem a certeza que quer reiniciar?
 
 #: ../panel-plugin/xfsm-logout-plugin.c:90
 #, c-format
 msgid Your system will reboot in %u seconds.
-msgstr 
+msgstr O sistema será reiniciado %u segundos.
 
 #: ../panel-plugin/xfsm-logout-plugin.c:93
-#, fuzzy
 msgid Failed to reboot.
-msgstr Incapaz de criar ficheiro %s
+msgstr Reiniciar falhou.
 
 #: ../panel-plugin/xfsm-logout-plugin.c:100
-#, fuzzy
 msgid Failed to suspend
-msgstr Falhou a suspensão da sessão
+msgstr Falhou a suspensão
 
 #: ../panel-plugin/xfsm-logout-plugin.c:107
-#, fuzzy
 msgid Failed to hibernate
-msgstr Falhou a hibernação da sessão
+msgstr Falhou a hibernação
 
 #: ../panel-plugin/xfsm-logout-plugin.c:186
-#, fuzzy
 msgid Close Session
-msgstr Escolha a sessão
+msgstr Fechar Sessão
 
 #: ../panel-plugin/xfsm-logout-plugin.c:274
-#, fuzzy
 msgid Session Error
-msgstr Erro a gravar sessão
+msgstr Erro de Sessão
 
 #: ../settings/main.c:43
 msgid Settings manager socket
@@ -268,7 +252,8 @@ msgstr Reporte bugs para %s.
 msgid Session Settings
 msgstr Definições de Sessão
 
-#: ../settings/main.c:86 ../xfce4-session/main.c:281
+#: ../settings/main.c:86
+#: ../xfce4-session/main.c:281
 msgid Unable to contact settings server
 msgstr Incapaz de contactar servidor de definições
 
@@ -278,8 +263,7 @@ msgstr Erro Interno
 
 #: ../settings/main.c:101
 msgid