[Xfce4-commits] ristretto:master Limit move and zoom selection to the inside of the image-frame.

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/master
 to 97a169c4755d83c6ae626439d426cd7f994e2147 (commit)
   from 89127b8c5899ba151bfced6f61e353042ad5e9b7 (commit)

commit 97a169c4755d83c6ae626439d426cd7f994e2147
Author: Stephan Arts step...@xfce.org
Date:   Sun Dec 18 09:16:04 2011 +0100

Limit move and zoom selection to the inside of the image-frame.

 src/image_viewer.c |   28 
 1 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/src/image_viewer.c b/src/image_viewer.c
index 702df06..6a58052 100644
--- a/src/image_viewer.c
+++ b/src/image_viewer.c
@@ -2155,19 +2155,31 @@ rstto_button_press_event (
 {
 if (!(event-state  (GDK_CONTROL_MASK)))
 {
-GdkCursor *cursor = gdk_cursor_new(GDK_FLEUR);
-gdk_window_set_cursor(widget-window, cursor);
-gdk_cursor_unref(cursor);
-rstto_image_viewer_set_motion_state (viewer, 
RSTTO_IMAGE_VIEWER_MOTION_STATE_MOVE);
+if ( (event-x  viewer-priv-rendering.x_offset) 
+ (event-y  viewer-priv-rendering.y_offset) 
+ (event-y  (viewer-priv-rendering.y_offset + 
viewer-priv-rendering.height)) 
+ (event-x  (viewer-priv-rendering.x_offset + 
viewer-priv-rendering.width)))
+{
+GdkCursor *cursor = gdk_cursor_new(GDK_FLEUR);
+gdk_window_set_cursor(widget-window, cursor);
+gdk_cursor_unref(cursor);
+rstto_image_viewer_set_motion_state (viewer, 
RSTTO_IMAGE_VIEWER_MOTION_STATE_MOVE);
+}
 }
 
 if (event-state  GDK_CONTROL_MASK)
 {
-GdkCursor *cursor = gdk_cursor_new(GDK_UL_ANGLE);
-gdk_window_set_cursor(widget-window, cursor);
-gdk_cursor_unref(cursor);
+if ( (event-x  viewer-priv-rendering.x_offset) 
+ (event-y  viewer-priv-rendering.y_offset) 
+ (event-y  (viewer-priv-rendering.y_offset + 
viewer-priv-rendering.height)) 
+ (event-x  (viewer-priv-rendering.x_offset + 
viewer-priv-rendering.width)))
+{
+GdkCursor *cursor = gdk_cursor_new(GDK_UL_ANGLE);
+gdk_window_set_cursor(widget-window, cursor);
+gdk_cursor_unref(cursor);
 
-rstto_image_viewer_set_motion_state (viewer, 
RSTTO_IMAGE_VIEWER_MOTION_STATE_BOX_ZOOM);
+rstto_image_viewer_set_motion_state (viewer, 
RSTTO_IMAGE_VIEWER_MOTION_STATE_BOX_ZOOM);
+}
 }
 }
 return TRUE;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Limit drawing of the selection-box to the inside of the image-frame.

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/master
 to 89127b8c5899ba151bfced6f61e353042ad5e9b7 (commit)
   from c7e94713bc7d19a26bc0342f1b1dd5cab12a1b18 (commit)

commit 89127b8c5899ba151bfced6f61e353042ad5e9b7
Author: Stephan Arts step...@xfce.org
Date:   Sun Dec 18 09:11:58 2011 +0100

Limit drawing of the selection-box to the inside of the image-frame.

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

diff --git a/src/image_viewer.c b/src/image_viewer.c
index a3eafea..702df06 100644
--- a/src/image_viewer.c
+++ b/src/image_viewer.c
@@ -1184,6 +1184,18 @@ paint_selection_box (
 box_height = (y_offset + image_height) - box_y - 1;
 }
 
+/* Make sure the box dimensions are not negative,
+ * This results in rendering-artifacts.
+ */
+if (box_width  0.0)
+{
+box_width = 0.0;
+}
+if (box_height  0.0)
+{
+box_height = 0.0;
+}
+
 cairo_rectangle (
 ctx,
 box_x+0.5, box_y+0.5,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Set the motion-state to BOX-ZOOM even when not hovering over the image

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/master
 to 0d1b0fb14f28eba61a2eb7d786cc1e88a43f2433 (commit)
   from 97a169c4755d83c6ae626439d426cd7f994e2147 (commit)

commit 0d1b0fb14f28eba61a2eb7d786cc1e88a43f2433
Author: Stephan Arts step...@xfce.org
Date:   Sun Dec 18 09:22:43 2011 +0100

Set the motion-state to BOX-ZOOM even when not hovering over the image

Change the cursor only when the mouse is over the image, but allow
a selection to start from 'outside' the image and end outside the
image aswell.

 src/image_viewer.c |   30 --
 1 files changed, 28 insertions(+), 2 deletions(-)

diff --git a/src/image_viewer.c b/src/image_viewer.c
index 6a58052..3e77271 100644
--- a/src/image_viewer.c
+++ b/src/image_viewer.c
@@ -2127,6 +2127,25 @@ rstto_motion_notify_event (
 widget-window,
 NULL,
 FALSE); 
+
+/* Only change the cursor when hovering over the image
+ */
+if ( (event-x  viewer-priv-rendering.x_offset) 
+ (event-y  viewer-priv-rendering.y_offset) 
+ (event-y  (viewer-priv-rendering.y_offset + 
viewer-priv-rendering.height)) 
+ (event-x  (viewer-priv-rendering.x_offset + 
viewer-priv-rendering.width)))
+{
+GdkCursor *cursor = gdk_cursor_new(GDK_UL_ANGLE);
+gdk_window_set_cursor(widget-window, cursor);
+gdk_cursor_unref(cursor);
+}
+else
+{
+/* Set back to default when moving over the
+ * background.
+ */
+gdk_window_set_cursor(widget-window, NULL);
+}
 break;
 default:
 break;
@@ -2169,6 +2188,8 @@ rstto_button_press_event (
 
 if (event-state  GDK_CONTROL_MASK)
 {
+/* Only change the cursor when hovering over the image
+ */
 if ( (event-x  viewer-priv-rendering.x_offset) 
  (event-y  viewer-priv-rendering.y_offset) 
  (event-y  (viewer-priv-rendering.y_offset + 
viewer-priv-rendering.height)) 
@@ -2177,9 +2198,14 @@ rstto_button_press_event (
 GdkCursor *cursor = gdk_cursor_new(GDK_UL_ANGLE);
 gdk_window_set_cursor(widget-window, cursor);
 gdk_cursor_unref(cursor);
-
-rstto_image_viewer_set_motion_state (viewer, 
RSTTO_IMAGE_VIEWER_MOTION_STATE_BOX_ZOOM);
 }
+
+/* Set the zoom-state even if not hovering over the
+ * image, this allows for easier selection.
+ * Dragging from / to somewhere outside the image to
+ * make sure the border is selected too.
+ */
+rstto_image_viewer_set_motion_state (viewer, 
RSTTO_IMAGE_VIEWER_MOTION_STATE_BOX_ZOOM);
 }
 }
 return TRUE;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master l10n: Updated Icelandic (is) translation to 88%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 9d1e4eb48df26e347ebf1543c55378d6abb330fb (commit)
   from 0d1b0fb14f28eba61a2eb7d786cc1e88a43f2433 (commit)

commit 9d1e4eb48df26e347ebf1543c55378d6abb330fb
Author: Sveinn í Felli svei...@nett.is
Date:   Sun Dec 18 09:37:19 2011 +0100

l10n: Updated Icelandic (is) translation to 88%

New status: 120 messages complete with 0 fuzzies and 15 untranslated.

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

 po/is.po |   30 +++---
 1 files changed, 11 insertions(+), 19 deletions(-)

diff --git a/po/is.po b/po/is.po
index 49e1de9..488945b 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,22 +1,22 @@
 # translation of ristretto.master.untitled.po to Icelandic
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Sveinn í Felli svei...@nett.is, 2011.
 msgid 
 msgstr 
 Project-Id-Version: ristretto.master.untitled\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
+POT-Creation-Date: 2011-12-18 08:12+\n
 PO-Revision-Date: 2011-12-01 20:43+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
 Language-Team: Icelandic translation-team...@lists.sourceforge.net\n
-Language: \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
+Language: \n
 Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n
+X-Generator: KBabel 1.11.4\n
 
 #: ../src/main.c:61
 msgid Version information
@@ -140,9 +140,8 @@ msgstr _Setja sem skjáborðsmynd
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
-msgstr _Renna
+msgstr _Aðdráttur
 
 #: ../src/main_window.c:295
 msgid Zoom _In
@@ -221,9 +220,8 @@ msgid _Position
 msgstr _Staða
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
-msgstr Smámyndir
+msgstr Staðsetning smá_myndaslár
 
 #. Misc
 #: ../src/main_window.c:325
@@ -242,9 +240,8 @@ msgstr 
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
-msgstr Smámyndir
+msgstr _Birta smámyndaslá
 
 #. Sort by Filename
 #: ../src/main_window.c:344
@@ -330,17 +327,14 @@ msgid GNOME
 msgstr GNOME
 
 #: ../src/main_window.c:2381
-#, fuzzy
 msgid Developer:
 msgstr Forritari:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
-msgstr Ristretto er myndaforrit fyrir Xfce skjáborðs umhverfið.
+msgstr Ristretto er myndaforrit fyrir Xfce skjáborðsumhverfið.
 
 #: ../src/main_window.c:2398
-#, fuzzy
 msgid translator-credits
 msgstr 
 Launchpad Contributions:\n
@@ -380,7 +374,6 @@ msgid Time range to clear:
 msgstr 
 
 #: ../src/privacy_dialog.c:155
-#, fuzzy
 msgid Cleanup
 msgstr Hreinsun
 
@@ -426,7 +419,7 @@ msgstr 
 
 #: ../src/preferences_dialog.c:220
 msgid Merge toolbars
-msgstr 
+msgstr Sameina áhaldaslár
 
 #: ../src/preferences_dialog.c:225
 msgid Thumbnails
@@ -462,7 +455,7 @@ msgstr Stýring
 
 #: ../src/preferences_dialog.c:293
 msgid Scroll wheel
-msgstr 
+msgstr Skrunhjól
 
 #: ../src/preferences_dialog.c:296
 msgid Invert zoom direction
@@ -593,9 +586,8 @@ msgid Zoomed
 msgstr Stækkað
 
 #: ../ristretto.desktop.in.h:2
-#, fuzzy
 msgid Look at your images easily
-msgstr Skoðaðu myndirnar þínar léttilega
+msgstr Skoðaðu myndirnar þínar
 
 #: ../ristretto.desktop.in.h:3
 msgid Ristretto Image Viewer
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 9869e30ecba2a64d595e7988daf7ac0149dd499e (commit)
   from 9d1e4eb48df26e347ebf1543c55378d6abb330fb (commit)

commit 9869e30ecba2a64d595e7988daf7ac0149dd499e
Author: Per Kongstad p_kongs...@op.pl
Date:   Sun Dec 18 09:38:51 2011 +0100

l10n: Updated Danish (da) translation to 100%

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

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

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

diff --git a/po/da.po b/po/da.po
index b7987c0..ffe1e6e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2007 Stephan Arts step...@xfce.org
 # This file is distributed under the same license as the Ristretto package.
 # Per Kongstad p_kongs...@op.pl, 2008, 2009.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: ristretto 0.0.90\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
+POT-Creation-Date: 2011-12-18 08:12+\n
 PO-Revision-Date: 2010-01-15 12:00+0100\n
 Last-Translator: Per Kongstad p_kongs...@op.pl\n
 Language-Team: Danish da...@dansk-gruppen.dk\n
-Language: da\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: da\n
 X-Poedit-Language: Danish\n
 X-Poedit-SourceCharset: utf-8\n
 X-Poedit-Country: DENMARK\n
@@ -144,9 +144,8 @@ msgstr _Brug som skrivebordsbaggrund
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
-msgstr _Zooming
+msgstr _Zoom
 
 #: ../src/main_window.c:295
 msgid Zoom _In
@@ -225,7 +224,6 @@ msgid _Position
 msgstr _Placering
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
 msgstr Miniaturbjælke_position
 
@@ -246,9 +244,8 @@ msgstr Vis _værktøjslinje
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
-msgstr Vis _miniaturebjælke
+msgstr Vis _miniaturbjælke
 
 #. Sort by Filename
 #: ../src/main_window.c:344
@@ -312,7 +309,7 @@ msgstr Tom
 
 #: ../src/main_window.c:1831
 msgid Choose 'set wallpaper' method
-msgstr 
+msgstr Vælg \sæt tapetmetode\
 
 #: ../src/main_window.c:1846 ../src/preferences_dialog.c:349
 msgid 
@@ -320,6 +317,9 @@ msgid 
 This setting determines the method iRistretto/i will use\n
 to configure the desktop wallpaper.
 msgstr 
+Indstil hvilket system der håndterer aktivt dit skrivebordsmiljø.\n
+Denne indstilling bestmmer metoden iRistretto/i vil bruge\n
+til at indstille skrivebordstapetet.
 
 #: ../src/main_window.c:1871 ../src/preferences_dialog.c:373
 msgid None
@@ -338,7 +338,6 @@ msgid Developer:
 msgstr Udvikler:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
 msgstr Ristretto er en billedfremviser til skrivebordsmiljøet Xfce.
 
@@ -380,9 +379,8 @@ msgid Are you sure you want to delete image '%s' from 
disk?
 msgstr Er du sikker på, at du vil slette billedet '%s' fra disken?
 
 #: ../src/privacy_dialog.c:151
-#, fuzzy
 msgid Time range to clear:
-msgstr Tidsrum der skal ryddes:
+msgstr Tidsinterval der skal ryddes:
 
 #: ../src/privacy_dialog.c:155
 msgid Cleanup
@@ -437,7 +435,6 @@ msgid Thumbnails
 msgstr Miniaturer
 
 #: ../src/preferences_dialog.c:228
-#, fuzzy
 msgid 
 The thumbnail bar can be automatically hidden \n
 when the window is fullscreen.
@@ -446,9 +443,8 @@ msgstr 
 når billedviseren er i fuldskærmtilstand.
 
 #: ../src/preferences_dialog.c:230
-#, fuzzy
 msgid Hide thumbnail bar when fullscreen
-msgstr Skjul miniaturebjælke ved fuldskærmstilstand
+msgstr Skjul miniaturbjælke ved fuldskærmstilstand
 
 #: ../src/preferences_dialog.c:266
 msgid Slideshow
@@ -471,12 +467,10 @@ msgid Control
 msgstr Kontrol
 
 #: ../src/preferences_dialog.c:293
-#, fuzzy
 msgid Scroll wheel
 msgstr Rullehjul
 
 #: ../src/preferences_dialog.c:296
-#, fuzzy
 msgid Invert zoom direction
 msgstr Spejlvend zoomretning
 
@@ -561,9 +555,8 @@ msgid border width
 msgstr kantbredde
 
 #: ../src/thumbnail_bar.c:216
-#, fuzzy
 msgid the border width of the thumbnail bar
-msgstr bredden af kanten rundt om miniaturebjælken
+msgstr bredden af kanten rundt om miniaturbjælken
 
 #: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234
 msgid Style:
@@ -606,7 +599,6 @@ msgid Zoomed
 msgstr Forstørret
 
 #: ../ristretto.desktop.in.h:2
-#, fuzzy
 msgid Look at your images easily
 msgstr Se nemt dine billeder
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Fix segfault of exit (check if thumbnailer is still available)

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/master
 to 2c76535a89c4a6fde0ba43031eaabdcefbbe1d22 (commit)
   from 9869e30ecba2a64d595e7988daf7ac0149dd499e (commit)

commit 2c76535a89c4a6fde0ba43031eaabdcefbbe1d22
Author: Stephan Arts step...@xfce.org
Date:   Sun Dec 18 09:57:09 2011 +0100

Fix segfault of exit (check if thumbnailer is still available)

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

diff --git a/src/thumbnail_bar.c b/src/thumbnail_bar.c
index d6764bf..1051bba 100644
--- a/src/thumbnail_bar.c
+++ b/src/thumbnail_bar.c
@@ -667,7 +667,11 @@ rstto_thumbnail_bar_remove(GtkContainer *container, 
GtkWidget *child)
 
widget_was_visible = GTK_WIDGET_VISIBLE(child);
 
-rstto_thumbnailer_dequeue_thumbnail (bar-priv-thumbnailer, 
RSTTO_THUMBNAIL(child));
+/* Check if there still is a thumbnailer present */
+if (NULL != bar-priv-thumbnailer)
+{
+rstto_thumbnailer_dequeue_thumbnail (bar-priv-thumbnailer, 
RSTTO_THUMBNAIL(child));
+}
 
 bar-priv-thumbs = g_list_remove(bar-priv-thumbs, child);
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar:xfce-4.8 l10n: Updated Icelandic (is) translation to 48%

2011-12-18 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 5679b492b8ccaae51aabf7b915bc4a200c96183c (commit)
   from 764b24032ebf9132b02968f31dafedf11505136b (commit)

commit 5679b492b8ccaae51aabf7b915bc4a200c96183c
Author: Sveinn í Felli svei...@nett.is
Date:   Sun Dec 18 10:27:07 2011 +0100

l10n: Updated Icelandic (is) translation to 48%

New status: 327 messages complete with 216 fuzzies and 136 untranslated.

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

 po/is.po |  186 +
 1 files changed, 101 insertions(+), 85 deletions(-)

diff --git a/po/is.po b/po/is.po
index a3c276b..0ceb9bc 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,13 +1,13 @@
 # translation of thunar.xfce-4-8.untitled.po to Icelandic
 # Copyright (C) 2011 Free Software Foundation
 # This file is distributed under the same license as the Thunar package.
-#
+# 
 # Sveinn í Felli svei...@nett.is, 2011.
 msgid 
 msgstr 
 Project-Id-Version: thunar.xfce-4-8.untitled\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-01 00:51+\n
+POT-Creation-Date: 2011-12-18 08:51+\n
 PO-Revision-Date: 2011-12-06 22:13+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
 Language-Team: Icelandic translation-team...@lists.sourceforge.net\n
@@ -260,7 +260,9 @@ msgstr _Tæma ruslið
 msgid 
 If you choose to empty the Trash, all items in it will be permanently lost. 
 Please note that you can also delete them separately.
-msgstr Ef þú velur að tæma ruslið verða öll atriði í því horfinn til 
eilífðar. Athugaðu að þú getur einnig fjarlægt þau eitt og eitt í einu.
+msgstr 
+Ef þú velur að tæma ruslið verða öll atriði í því horfinn til eilífðar. 
+Athugaðu að þú getur einnig fjarlægt þau eitt og eitt í einu.
 
 #: ../thunar/thunar-application.c:1907
 msgid Emptying the Trash...
@@ -269,17 +271,17 @@ msgstr Tæmi ruslið...
 #: ../thunar/thunar-application.c:1953
 #, c-format
 msgid Failed to determine the original path for \%s\
-msgstr 
+msgstr Mistókst að finna út upprunalega slóð \%s\
 
 #. display an error dialog
 #: ../thunar/thunar-application.c:1970
 #, c-format
 msgid Could not restore \%s\
-msgstr 
+msgstr Gat ekki endurheimt \%s\
 
 #: ../thunar/thunar-application.c:1978
 msgid Restoring files...
-msgstr 
+msgstr Endurheimti skrár...
 
 #: ../thunar/thunar-chooser-button.c:309 ../thunar/thunar-chooser-dialog.c:465
 #, c-format
@@ -288,7 +290,8 @@ msgstr Mistókst að setja sjálfgefið forrit fyrir \%s\
 
 #: ../thunar/thunar-chooser-button.c:440
 #, c-format
-msgid The selected application is used to open this and other files of type 
\%s\.
+msgid 
+The selected application is used to open this and other files of type \%s\.
 msgstr 
 
 #: ../thunar/thunar-chooser-button.c:492
@@ -333,7 +336,7 @@ msgstr Mistókst að bæta við nýju forriti \%s\
 #: ../thunar/thunar-chooser-dialog.c:492
 #, c-format
 msgid Failed to execute application \%s\
-msgstr 
+msgstr Mistókst að ræsa forrit \%s\
 
 #. append the Remove Launcher item
 #: ../thunar/thunar-chooser-dialog.c:564
@@ -348,7 +351,8 @@ msgstr Opna i%s/i og aðrar skrár af tegundinni \%s\ 
með:
 
 #: ../thunar/thunar-chooser-dialog.c:657
 #, c-format
-msgid Browse the file system to select an application to open files of type 
\%s\.
+msgid 
+Browse the file system to select an application to open files of type \%s\.
 msgstr 
 
 #: ../thunar/thunar-chooser-dialog.c:663
@@ -429,7 +433,7 @@ msgstr Önnur forrit
 #. tell the user that we cannot paste
 #: ../thunar/thunar-clipboard-manager.c:352
 msgid There is nothing on the clipboard to paste
-msgstr 
+msgstr Það er ekkert á klippispjaldinu sem hægt er að líma
 
 #: ../thunar/thunar-column-editor.c:120
 msgid Configure Columns in the Detailed List View
@@ -522,7 +526,7 @@ msgstr Skrifaðu inn nýtt heiti:
 #: ../thunar/thunar-create-dialog.c:476
 #, c-format
 msgid Cannot convert filename \%s\ to the local encoding
-msgstr 
+msgstr Get ekki umbreytt skráarheiti \%s\ í staðværa stafatöflu
 
 #: ../thunar/thunar-dbus-service.c:457
 #, c-format
@@ -666,7 +670,7 @@ msgid ReplaceDialogPart1|Do you want to replace the 
existing file
 msgstr ReplaceDialogPart1|Viltu skipta skránni sem er til staðar
 
 #. Fourth box (size, volume, free space)
-#.
+#. 
 #: ../thunar/thunar-dialogs.c:651 ../thunar/thunar-dialogs.c:682
 #: ../thunar/thunar-properties-dialog.c:408
 msgid Size:
@@ -748,7 +752,7 @@ msgid Owner
 msgstr Eigandi
 
 #. Permissions chooser
-#.
+#. 
 #: ../thunar/thunar-enum-types.c:121 ../thunar/thunar-properties-dialog.c:481
 msgid Permissions
 msgstr Heimildir
@@ -853,7 +857,8 @@ msgstr Gat ekki eytt skrá \%s\: %s
 #: ../thunar/thunar-io-jobs.c:547
 #, c-format
 msgid Could not create symbolic link to \%s\ because it is not a local file
-msgstr Gat ekki búið til tákntengi við \%s\ vegna þess að það er ekki 
staðvær skrá
+msgstr 
+Gat ekki búið til tákntengi við \%s\ vegna þess að það er ekki staðvær skrá
 
 #. generate a useful error message
 #: ../thunar/thunar-io-jobs.c:875
@@ 

[Xfce4-commits] gigolo:master l10n: Updated Icelandic (is) translation to 75%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to c9a52f29b1cf4e0c675aa401fd11b849cda59d18 (commit)
   from 60b1d5ee5958208846b824eab0b10e447628fb6c (commit)

commit c9a52f29b1cf4e0c675aa401fd11b849cda59d18
Author: Sveinn í Felli svei...@nett.is
Date:   Sun Dec 18 10:35:24 2011 +0100

l10n: Updated Icelandic (is) translation to 75%

New status: 105 messages complete with 1 fuzzy and 34 untranslated.

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

 po/is.po |   27 +--
 1 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/po/is.po b/po/is.po
index e10aaa2..9652fc7 100644
--- a/po/is.po
+++ b/po/is.po
@@ -7,7 +7,7 @@ msgid 
 msgstr 
 Project-Id-Version: gigolo.master.gigolo\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-05 08:09+\n
+POT-Creation-Date: 2011-12-18 07:27+\n
 PO-Revision-Date: 2011-12-02 09:09+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
 Language-Team: Icelandic translation-team...@lists.sourceforge.net\n
@@ -15,8 +15,8 @@ msgstr 
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Language: \n
-Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n
 X-Generator: KBabel 1.11.4\n
+Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n
 
 #: ../src/main.c:46
 msgid Ignore running instances, enforce opening a new instance
@@ -180,9 +180,8 @@ msgid Open in _Terminal
 msgstr O_pna í skjáhermi
 
 #: ../src/window.c:1298
-#, fuzzy
 msgid Start a terminal from here
-msgstr Keyra terminal héðan frá
+msgstr Ræsa skjáhermisetu héðan
 
 #: ../src/window.c:1299
 msgid Copy _URI
@@ -214,11 +213,11 @@ msgstr Stöðu_tákn
 
 #: ../src/window.c:1318
 msgid View as _Symbols
-msgstr 
+msgstr _Skoða sem tákn
 
 #: ../src/window.c:1319
 msgid View as _Detailed List
-msgstr 
+msgstr Skoða sem ítarlegan _lista
 
 #: ../src/window.c:1328
 msgid _Bookmarks
@@ -301,7 +300,7 @@ msgstr Gátt
 
 #: ../src/bookmarkdialog.c:339
 msgid Auto-Connect
-msgstr 
+msgstr Tengjast sjálfvirkt
 
 #: ../src/bookmarkdialog.c:347
 msgid Username
@@ -365,7 +364,7 @@ msgstr _Litur:
 
 #: ../src/bookmarkeditdialog.c:1038
 msgid Au_to-Connect
-msgstr 
+msgstr _Tengjast sjálfvirkt
 
 #: ../src/bookmarkeditdialog.c:1049
 msgid Service t_ype:
@@ -437,7 +436,7 @@ msgstr Táknmerki
 
 #: ../src/preferencesdialog.c:190
 msgid Detailed List
-msgstr 
+msgstr Ítarlegur listi
 
 #: ../src/preferencesdialog.c:333
 msgid General
@@ -491,7 +490,7 @@ msgstr 
 
 #: ../src/preferencesdialog.c:403
 msgid Show side panel
-msgstr 
+msgstr Birta hliðarspjald
 
 #: ../src/preferencesdialog.c:404
 msgid 
@@ -518,7 +517,7 @@ msgstr Tækjaslá
 
 #: ../src/preferencesdialog.c:429
 msgid Show _toolbar
-msgstr 
+msgstr Birta áhaldaslá
 
 #: ../src/preferencesdialog.c:435
 msgid St_yle
@@ -526,7 +525,7 @@ msgstr St_íll
 
 #: ../src/preferencesdialog.c:446
 msgid _Orientation
-msgstr 
+msgstr Ste_fna
 
 #: ../src/preferencesdialog.c:507
 msgid Preferences
@@ -584,7 +583,7 @@ msgstr Engir þjónar fundust
 
 #: ../src/browsenetworkpanel.c:490
 msgid Connect to the selected share
-msgstr 
+msgstr Tengjast valdri sameign
 
 #: ../src/browsenetworkpanel.c:498
 msgid Create a bookmark from the selected share
@@ -592,7 +591,7 @@ msgstr 
 
 #: ../src/browsenetworkpanel.c:507
 msgid Refresh the network list
-msgstr 
+msgstr Endurnýja lista yfir netkerfi
 
 #: ../src/browsenetworkpanel.c:518 ../src/bookmarkpanel.c:267
 msgid Close panel
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to adca49c4ac5b6ad3abd0e1c284ffd96e300e2d42 (commit)
   from 2c76535a89c4a6fde0ba43031eaabdcefbbe1d22 (commit)

commit adca49c4ac5b6ad3abd0e1c284ffd96e300e2d42
Author: Tomáš Vadina kyber...@gmail.com
Date:   Sun Dec 18 10:40:22 2011 +0100

l10n: Updated Slovak (sk) translation to 100%

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

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

 po/sk.po |   19 ---
 1 files changed, 4 insertions(+), 15 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index 45d7148..a8d3638 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -4,19 +4,19 @@
 # , 2008.
 # Robert Hartl hartl.rob...@gmail.com, 2009.
 # Tomáš Vadina kyber...@gmail.com, 2011.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: Ristretto 0.0.20\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
+POT-Creation-Date: 2011-12-18 08:12+\n
 PO-Revision-Date: 2011-11-23 08:51+0100\n
 Last-Translator: Tomáš Vadina kyber...@gmail.com\n
 Language-Team: slovenčina sk-i...@lists.linux.sk\n
-Language: sk\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bits\n
+Language: sk\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n=2  n=4) ? 2 : 0;\n
 
 #: ../src/main.c:61
@@ -145,7 +145,6 @@ msgstr Nastaviť ako _tapetu
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
 msgstr _Lupa
 
@@ -226,7 +225,6 @@ msgid _Position
 msgstr _Umiestnenie
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
 msgstr _Pozícia panelu náhľadov
 
@@ -247,7 +245,6 @@ msgstr Zobraziť _navigačný panel
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
 msgstr Zobraziť panel náhľadov
 
@@ -342,7 +339,6 @@ msgid Developer:
 msgstr Vývojár:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
 msgstr Ristretto je prehliadač obrázkov pre pracovné prostredie Xfce.
 
@@ -383,7 +379,6 @@ msgid Are you sure you want to delete image '%s' from 
disk?
 msgstr Naozaj chcete zmazať obrázok '%s' z disku?
 
 #: ../src/privacy_dialog.c:151
-#, fuzzy
 msgid Time range to clear:
 msgstr Obdobie na vymazanie:
 
@@ -440,7 +435,6 @@ msgid Thumbnails
 msgstr Náhľady
 
 #: ../src/preferences_dialog.c:228
-#, fuzzy
 msgid 
 The thumbnail bar can be automatically hidden \n
 when the window is fullscreen.
@@ -449,7 +443,6 @@ msgstr 
 ak je prehliadač obrázkov zobrazený v režime celej obrazovky.
 
 #: ../src/preferences_dialog.c:230
-#, fuzzy
 msgid Hide thumbnail bar when fullscreen
 msgstr Skryť panel náhľadov pri zobrazení na celú obrazovku
 
@@ -474,12 +467,10 @@ msgid Control
 msgstr Ovládanie
 
 #: ../src/preferences_dialog.c:293
-#, fuzzy
 msgid Scroll wheel
 msgstr Koliesko myši
 
 #: ../src/preferences_dialog.c:296
-#, fuzzy
 msgid Invert zoom direction
 msgstr Obrátiť smer priblíženia
 
@@ -564,9 +555,8 @@ msgid border width
 msgstr Šírka okraja
 
 #: ../src/thumbnail_bar.c:216
-#, fuzzy
 msgid the border width of the thumbnail bar
-msgstr Šírka okraja panela s náhľadmi
+msgstr šírka okraja panela s náhľadmi
 
 #: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234
 msgid Style:
@@ -609,7 +599,6 @@ msgid Zoomed
 msgstr Zväčšený
 
 #: ../ristretto.desktop.in.h:2
-#, fuzzy
 msgid Look at your images easily
 msgstr Prezerajte obrázky jednoduchšie
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to f133d08904a752fc7ddf5ce751fd3ef36e7a73a5 (commit)
   from adca49c4ac5b6ad3abd0e1c284ffd96e300e2d42 (commit)

commit f133d08904a752fc7ddf5ce751fd3ef36e7a73a5
Author: Michal Várady miko.v...@gmail.com
Date:   Sun Dec 18 11:09:42 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |  153 +++---
 1 files changed, 77 insertions(+), 76 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 7415704..a327c8a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -2,14 +2,14 @@
 # Copyright (C) 2007 THE ristretto'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # Miro Hrončok churchy...@gmail.com, 2007.
-# Michal Várady miko.v...@gmail.com, 2008.
+# Michal Várady miko.v...@gmail.com, 2008-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: ristretto\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
-PO-Revision-Date: 2010-12-06 22:22+0100\n
+POT-Creation-Date: 2011-12-18 08:12+\n
+PO-Revision-Date: 2011-12-18 11:09+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech\n
 Language: \n
@@ -31,10 +31,10 @@ msgstr Spustit promítání
 
 #: ../src/main.c:77
 msgid Show settings dialog
-msgstr 
+msgstr Zobrazit dialogové okno nastavení
 
 #: ../src/main.c:105
-#, fuzzy, c-format
+#, c-format
 msgid 
 %s: %s\n
 \n
@@ -42,9 +42,11 @@ msgid 
 available command line options.\n
 msgstr 
 %s: %s\n
-Napište %s --help pro zobrazení seznamu všech dostupných parametrů.\n
+Pro zobrazení seznamu všech dostupných\n
+parametrů použijte příkaz %s --help\n
 
-#: ../src/main_window.c:55 ../ristretto.desktop.in.h:1
+#: ../src/main_window.c:55
+#: ../ristretto.desktop.in.h:1
 msgid Image Viewer
 msgstr Prohlížeč obrázků
 
@@ -71,11 +73,11 @@ msgstr Uložit kopii obrázku
 
 #: ../src/main_window.c:278
 msgid _Properties
-msgstr 
+msgstr _Vlastnosti
 
 #: ../src/main_window.c:278
 msgid Show file properties
-msgstr 
+msgstr Zobrazit vlastnosti souboru
 
 #: ../src/main_window.c:279
 msgid _Close
@@ -111,13 +113,12 @@ msgid _Delete
 msgstr _Smazat
 
 #: ../src/main_window.c:285
-#, fuzzy
 msgid Delete this image from disk
-msgstr Zavřít tento obrázek
+msgstr Smazat tento obrázek z disku
 
 #: ../src/main_window.c:286
 msgid _Clear private data
-msgstr 
+msgstr _Smazat soukromé údaje
 
 #: ../src/main_window.c:287
 msgid _Preferences
@@ -142,9 +143,8 @@ msgstr Nastavit jako _tapetu
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
-msgstr _Přiblížit
+msgstr _Přiblížení
 
 #: ../src/main_window.c:295
 msgid Zoom _In
@@ -152,11 +152,11 @@ msgstr _Přiblížit
 
 #: ../src/main_window.c:296
 msgid Zoom _Out
-msgstr Při_blížit
+msgstr O_ddálit
 
 #: ../src/main_window.c:297
 msgid Zoom _Fit
-msgstr O_ddálit
+msgstr Při_způsobit oknu
 
 #: ../src/main_window.c:298
 msgid _Normal Size
@@ -223,9 +223,8 @@ msgid _Position
 msgstr _Pozice
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
-msgstr Náhledy
+msgstr _Umístění panelu Náhledy
 
 #. Misc
 #: ../src/main_window.c:325
@@ -244,7 +243,6 @@ msgstr Zobrazit panel _Navigace
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
 msgstr Zobrazit panel Ná_hledy
 
@@ -300,49 +298,57 @@ msgstr _Naposledy otevřené
 msgid Recently used
 msgstr Naposledy použité
 
-#: ../src/main_window.c:596 ../src/main_window.c:1022
+#: ../src/main_window.c:596
+#: ../src/main_window.c:1022
 msgid Press open to select an image
 msgstr Obrázek vyberete stisknutím tlačítka Otevřít
 
-#: ../src/main_window.c:926 ../src/main_window.c:932
+#: ../src/main_window.c:926
+#: ../src/main_window.c:932
 msgid Empty
 msgstr Prázdný
 
 #: ../src/main_window.c:1831
 msgid Choose 'set wallpaper' method
-msgstr 
+msgstr Zvolit metodu 'nastavení tapety'
 
-#: ../src/main_window.c:1846 ../src/preferences_dialog.c:349
+#: ../src/main_window.c:1846
+#: ../src/preferences_dialog.c:349
 msgid 
 Configure which system is currently managing your desktop.\n
 This setting determines the method iRistretto/i will use\n
 to configure the desktop wallpaper.
 msgstr 
+Konfiguruje, který systém aktuálně spravuje pracovní plochu.\n
+Toto nastavení určuje metodu, kterou aplikace iRistretto/i\n
+použije k nastavení tapety pracovní plochy.
 
-#: ../src/main_window.c:1871 ../src/preferences_dialog.c:373
+#: ../src/main_window.c:1871
+#: ../src/preferences_dialog.c:373
 msgid None
-msgstr 
+msgstr Žádný
 
-#: ../src/main_window.c:1875 ../src/preferences_dialog.c:377
+#: ../src/main_window.c:1875
+#: ../src/preferences_dialog.c:377
 msgid Xfce
-msgstr 
+msgstr Xfce
 
-#: ../src/main_window.c:1879 ../src/preferences_dialog.c:381
+#: ../src/main_window.c:1879
+#: ../src/preferences_dialog.c:381
 msgid GNOME
-msgstr 

[Xfce4-commits] xfce4-dict:master l10n: fyrsta innsetning

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to ef72cc87b4580662ee22acbca7044194b0942d54 (commit)
   from 7e5b87b6c9fed347b39a82e696910fa5c8fe9699 (commit)

commit ef72cc87b4580662ee22acbca7044194b0942d54
Author: Sveinn í Felli svei...@nett.is
Date:   Sun Dec 18 11:17:57 2011 +0100

l10n: fyrsta innsetning

New status: 1 message complete with 0 fuzzies and 110 untranslated.

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

 po/{zh_CN.po = is.po} |  250 +++-
 1 files changed, 120 insertions(+), 130 deletions(-)

diff --git a/po/zh_CN.po b/po/is.po
similarity index 63%
copy from po/zh_CN.po
copy to po/is.po
index 7c52a8b..cd60299 100644
--- a/po/zh_CN.po
+++ b/po/is.po
@@ -1,202 +1,200 @@
-# Simplified Chinese translations for
-# the xfce4-dict package.
-# This file is distributed under the same license as
-# the xfce4-dict package.
-# Hunt Xu hun...@live.cn, 2008, 2009, 2010.
-# Chipong Luo chipon...@yahoo.com, 2011.
-#
+# Icelandic translation of xfce-dict
+# Copyright (C) 2011 FSF
+# This file is distributed under the same license as the PACKAGE package.
+# Sveinn í Felli svei...@nett.is, 2011.
 msgid 
 msgstr 
-Project-Id-Version: xfce4-dict\n
+Project-Id-Version: xfce\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-10-25 04:01+\n
-PO-Revision-Date: 2010-01-14 22:32+0800\n
-Last-Translator: Chipong Luo chipon...@yahoo.com\n
-Language-Team: Chinese (Simplified) xfce-i...@xfce.org\n
-Language: zh_CN\n
+POT-Creation-Date: 2011-12-18 03:33+\n
+PO-Revision-Date: 2011-12-18 10:04+\n
+Last-Translator: Sveinn í Felli svei...@nett.is\n
+Language-Team: is translation-team...@lists.sourceforge.net\n
+Language: is\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
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:1
 msgid A plugin to query different dictionaries.
-msgstr 查询不同词典的插件。
+msgstr 
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
 #: ../src/xfce4-dict.desktop.in.h:2 ../lib/gui.c:734 ../lib/prefs.c:270
 msgid Dictionary
-msgstr 词典
+msgstr Orðasafn
 
 #: ../panel-plugin/xfce4-dict-plugin.c:347
 #: ../panel-plugin/xfce4-dict-plugin.c:473 ../src/xfce4-dict.c:200
 #: ../lib/spell.c:243 ../lib/gui.c:517
 msgid Ready
-msgstr 就绪
+msgstr 
 
 #: ../panel-plugin/xfce4-dict-plugin.c:413
 msgid Look up a word
-msgstr 查找单词
+msgstr 
 
 #: ../panel-plugin/xfce4-dict-plugin.c:444 ../lib/gui.c:758
 msgid Search term
-msgstr 搜索短语
+msgstr 
 
 #: ../src/xfce4-dict.c:51
 msgid Search the given text using a Dict server(RFC 2229)
-msgstr 使用词典服务器(RFC 2229)搜索给定的文本
+msgstr 
 
 #: ../src/xfce4-dict.c:52
 msgid Search the given text using a web-based search engine
-msgstr 使用基于网络的搜索引擎搜索给定的文本
+msgstr 
 
 #: ../src/xfce4-dict.c:53
 msgid Check the given text with a spell checker
-msgstr 使用拼写检查器检查给定的文本
+msgstr 
 
 #: ../src/xfce4-dict.c:54
 msgid Grab the focus on the text field in the panel
-msgstr 捕获在面板内的文本框上的焦点
+msgstr 
 
 #: ../src/xfce4-dict.c:55
 msgid Start stand-alone application even if the panel plugin is loaded
-msgstr 即使面板已载入也启动的独立应用程序
+msgstr 
 
 #: ../src/xfce4-dict.c:56
 msgid Grabs the PRIMARY selection content and uses it as search text
-msgstr 捕获之前选择的内容并作为搜索内容
+msgstr 
 
 #: ../src/xfce4-dict.c:57
 msgid Be verbose
-msgstr 冗余
+msgstr 
 
 #: ../src/xfce4-dict.c:58
 msgid Show version information
-msgstr 显示版本信息
+msgstr 
 
 #: ../src/xfce4-dict.c:131
 msgid [TEXT]
-msgstr [文本]
+msgstr 
 
 #: ../src/xfce4-dict.c:147
 #, c-format
 msgid Please report bugs to %s.
-msgstr 请向 %s 报告缺陷。
+msgstr 
 
 #: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:957
 msgid A client program to query different dictionaries.
-msgstr 用于查询不同词典的客户端程序
+msgstr 
 
 #: ../src/xfce4-dict.desktop.in.h:3
 msgid Dictionary Client
-msgstr 词典客户端
+msgstr 
 
 #: ../lib/spell.c:75
 msgid Spell Checker Results:
-msgstr 拼写检查结果:
+msgstr 
 
 #: ../lib/spell.c:101
 #, c-format
 msgid %d suggestion found.
 msgid_plural %d suggestions found.
-msgstr[0] 找到 %d 条建议。
+msgstr[0] 
+msgstr[1] 
 
 #: ../lib/spell.c:105
 #, c-format
 msgid Suggestions for \%s\ (%s):
-msgstr 对 “%s”(%s) 的拼写建议:
+msgstr 
 
 #: ../lib/spell.c:122
 #, c-format
 msgid \%s\ is spelled correctly (%s).
-msgstr “%s” 拼写正确(%s)。
+msgstr 
 
 #: ../lib/spell.c:134
 #, c-format
 msgid No suggestions could be found for \%s\ (%s).
-msgstr 找不到 “%s”(%s) 的相关拼写建议。
+msgstr 
 
 #. translation hint:
 #. * Error while executing spell command, e.g. aspell (error message)
 #: ../lib/spell.c:164
 #, c-format
 msgid Error while executing \%s\ (%s).
-msgstr 执行 “%s” 时出错(%s)。
+msgstr 
 
 #: ../lib/spell.c:202
 msgid Please set the spell check command in the preferences dialog.
-msgstr 请在首选项对话框中设定拼写检查命令。
+msgstr 
 
 #: ../lib/spell.c:208 ../lib/common.c:224
 msgid Invalid input
-msgstr 无效输入
+msgstr 
 
 #: ../lib/spell.c:247
 #, c-format
 msgid Process failed (%s)
-msgstr 无法执行(%s)。
+msgstr 
 
 #: ../lib/speedreader.c:80 

[Xfce4-commits] xfce4-dict:master l10n: Updated Icelandic (is) translation to 1%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 6201be80a1383b7da17fc23f531991cd087fa553 (commit)
   from ef72cc87b4580662ee22acbca7044194b0942d54 (commit)

commit 6201be80a1383b7da17fc23f531991cd087fa553
Author: Sveinn í Felli svei...@nett.is
Date:   Sun Dec 18 11:19:36 2011 +0100

l10n: Updated Icelandic (is) translation to 1%

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

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

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

diff --git a/po/is.po b/po/is.po
index cd60299..15e83b2 100644
--- a/po/is.po
+++ b/po/is.po
@@ -10,10 +10,10 @@ msgstr 
 PO-Revision-Date: 2011-12-18 10:04+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
 Language-Team: is translation-team...@lists.sourceforge.net\n
-Language: is\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: is\n
 Plural-Forms: nplurals=2; plural=n != 1;\n
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:1
@@ -33,7 +33,7 @@ msgstr 
 
 #: ../panel-plugin/xfce4-dict-plugin.c:413
 msgid Look up a word
-msgstr 
+msgstr Fletta upp orði
 
 #: ../panel-plugin/xfce4-dict-plugin.c:444 ../lib/gui.c:758
 msgid Search term
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] orage:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 6a34fa55dadba6efb026ba8690c66e62a36bf51e (commit)
   from 2ca8699656762b03f0766208a5aabe42a1b2829b (commit)

commit 6a34fa55dadba6efb026ba8690c66e62a36bf51e
Author: Michal Várady miko.v...@gmail.com
Date:   Sun Dec 18 11:58:43 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |  394 ++
 1 files changed, 217 insertions(+), 177 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 2aecf17..4016a39 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,13 +9,13 @@ msgstr 
 Project-Id-Version: orage 4.3.90.2\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2011-12-05 12:38+0200\n
-PO-Revision-Date: 2011-01-15 22:07+0100\n
+PO-Revision-Date: 2011-12-18 11:58+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech translation-team...@lists.sourceforge.net\n
+Language: cs\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: cs\n
 X-Poedit-Language: Czech\n
 X-Poedit-Country: CZECH REPUBLIC\n
 
@@ -54,13 +54,11 @@ msgid adjust to change hour
 msgstr nastavením změníte hodinu
 
 #: ../globaltime/globaltime.c:496
-msgid 
-adjust to change minute. Click arrows with button 2 to change only 1 minute.
-msgstr 
-nastavením změníte minutu. Pro změnu pouze o jednu minutu klikněte na šipky 
-s tlačítkem 2 .
+msgid adjust to change minute. Click arrows with button 2 to change only 1 
minute.
+msgstr nastavením změníte minutu. Pro změnu pouze o jednu minutu klikněte na 
šipky s tlačítkem 2 .
 
-#: ../globaltime/gt_prefs.c:265 ../globaltime/gt_prefs.c:266
+#: ../globaltime/gt_prefs.c:265
+#: ../globaltime/gt_prefs.c:266
 msgid NEW
 msgstr NOVÁ
 
@@ -76,7 +74,8 @@ msgstr Smazání posledních hodin není možné.
 msgid update this clock
 msgstr aktualizovat tyto hodiny
 
-#: ../globaltime/gt_prefs.c:521 ../globaltime/gt_prefs.c:1034
+#: ../globaltime/gt_prefs.c:521
+#: ../globaltime/gt_prefs.c:1034
 msgid add new empty clock
 msgstr přidat nové prázdné hodiny
 
@@ -108,7 +107,8 @@ msgstr přesunout tyto hodiny na konec
 msgid set the timezone of this clock to be local timezone
 msgstr nastavit časové pásmo těchto hodin na místní
 
-#: ../globaltime/gt_prefs.c:568 ../globaltime/gt_prefs.c:1042
+#: ../globaltime/gt_prefs.c:568
+#: ../globaltime/gt_prefs.c:1042
 msgid close window and exit
 msgstr zavřít okno a ukončit
 
@@ -138,7 +138,8 @@ msgid Text Formatting
 msgstr Formátování textu
 
 #. background-
-#: ../globaltime/gt_prefs.c:649 ../globaltime/gt_prefs.c:856
+#: ../globaltime/gt_prefs.c:649
+#: ../globaltime/gt_prefs.c:856
 msgid Background color:
 msgstr Barva pozadí:
 
@@ -146,22 +147,31 @@ msgstr Barva pozadí:
 msgid Click to change background colour for clock
 msgstr Klikněte pro změnu barvy pozadí hodin
 
-#: ../globaltime/gt_prefs.c:665 ../globaltime/gt_prefs.c:697
-#: ../globaltime/gt_prefs.c:729 ../globaltime/gt_prefs.c:762
-#: ../globaltime/gt_prefs.c:796 ../globaltime/gt_prefs.c:826
-#: ../globaltime/gt_prefs.c:872 ../globaltime/gt_prefs.c:905
-#: ../globaltime/gt_prefs.c:938 ../globaltime/gt_prefs.c:972
+#: ../globaltime/gt_prefs.c:665
+#: ../globaltime/gt_prefs.c:697
+#: ../globaltime/gt_prefs.c:729
+#: ../globaltime/gt_prefs.c:762
+#: ../globaltime/gt_prefs.c:796
+#: ../globaltime/gt_prefs.c:826
+#: ../globaltime/gt_prefs.c:872
+#: ../globaltime/gt_prefs.c:905
+#: ../globaltime/gt_prefs.c:938
+#: ../globaltime/gt_prefs.c:972
 msgid Use default
 msgstr Použít výchozí
 
-#: ../globaltime/gt_prefs.c:670 ../globaltime/gt_prefs.c:702
-#: ../globaltime/gt_prefs.c:735 ../globaltime/gt_prefs.c:768
-#: ../globaltime/gt_prefs.c:802 ../globaltime/gt_prefs.c:832
+#: ../globaltime/gt_prefs.c:670
+#: ../globaltime/gt_prefs.c:702
+#: ../globaltime/gt_prefs.c:735
+#: ../globaltime/gt_prefs.c:768
+#: ../globaltime/gt_prefs.c:802
+#: ../globaltime/gt_prefs.c:832
 msgid Cross this to use default instead of selected value
 msgstr Zaškrtněte pro použití vybrané hodnoty namísto výchozí
 
 #. foreground-
-#: ../globaltime/gt_prefs.c:681 ../globaltime/gt_prefs.c:889
+#: ../globaltime/gt_prefs.c:681
+#: ../globaltime/gt_prefs.c:889
 msgid Foreground (=text) color:
 msgstr Barva popředí (textu):
 
@@ -170,7 +180,8 @@ msgid Click to change foreground colour for clock
 msgstr Klikněte pro změnu barvy popředí hodin
 
 #. name font-
-#: ../globaltime/gt_prefs.c:713 ../globaltime/gt_prefs.c:922
+#: ../globaltime/gt_prefs.c:713
+#: ../globaltime/gt_prefs.c:922
 msgid Font for name of clock:
 msgstr Písmo pro název hodin:
 
@@ -179,7 +190,8 @@ msgid Click to change font for clock name
 msgstr Klikněte pro změnu písma názvu hodin
 
 #. time 

[Xfce4-commits] xfce4-dict:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 823b51e208ab3ecca5827758727eca521d7606c9 (commit)
   from 6201be80a1383b7da17fc23f531991cd087fa553 (commit)

commit 823b51e208ab3ecca5827758727eca521d7606c9
Author: Michal Várady miko.v...@gmail.com
Date:   Sun Dec 18 12:02:54 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |   39 ++-
 1 files changed, 22 insertions(+), 17 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 5e388b4..2dfcb96 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,10 +7,11 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-dict 0.5.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-15 17:04+\n
-PO-Revision-Date: 2011-01-15 22:10+0100\n
+POT-Creation-Date: 2011-12-18 09:39+\n
+PO-Revision-Date: 2011-12-18 12:01+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech xfce-i...@xfce.org\n
+Language: cs\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -22,7 +23,7 @@ msgstr Zásuvný modul pro získávání dat za slovníků.
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
 #: ../src/xfce4-dict.desktop.in.h:2
-#: ../lib/gui.c:628
+#: ../lib/gui.c:734
 #: ../lib/prefs.c:270
 msgid Dictionary
 msgstr Slovník
@@ -31,7 +32,7 @@ msgstr Slovník
 #: ../panel-plugin/xfce4-dict-plugin.c:473
 #: ../src/xfce4-dict.c:200
 #: ../lib/spell.c:243
-#: ../lib/gui.c:411
+#: ../lib/gui.c:517
 msgid Ready
 msgstr Připraven
 
@@ -40,7 +41,7 @@ msgid Look up a word
 msgstr Vyhledat slovo
 
 #: ../panel-plugin/xfce4-dict-plugin.c:444
-#: ../lib/gui.c:652
+#: ../lib/gui.c:758
 msgid Search term
 msgstr Hledat pojem
 
@@ -86,7 +87,7 @@ msgid Please report bugs to %s.
 msgstr Prosíme, abyste chyby hlásili na adresu %s.
 
 #: ../src/xfce4-dict.desktop.in.h:1
-#: ../lib/gui.c:851
+#: ../lib/gui.c:957
 msgid A client program to query different dictionaries.
 msgstr Klientský program pro získávání dat z různých slovníků.
 
@@ -318,44 +319,48 @@ msgstr Informace serveru pro „%s“
 msgid The server doesn't offer any databases.
 msgstr Server nenabízí žádné databáze.
 
-#: ../lib/gui.c:566
+#: ../lib/gui.c:344
+msgid Copy Link
+msgstr Kopírovat odkaz
+
+#: ../lib/gui.c:672
 msgid _File
 msgstr _Soubor
 
-#: ../lib/gui.c:571
-#: ../lib/gui.c:676
+#: ../lib/gui.c:677
+#: ../lib/gui.c:782
 msgid Speed _Reader
 msgstr _Rychločtení
 
-#: ../lib/gui.c:592
+#: ../lib/gui.c:698
 msgid _Help
 msgstr _Nápověda
 
-#: ../lib/gui.c:697
+#: ../lib/gui.c:803
 msgid Search with:
 msgstr Hledat pomocí:
 
-#: ../lib/gui.c:701
+#: ../lib/gui.c:807
 msgid _Dictionary Server
 msgstr _Server slovníku
 
-#: ../lib/gui.c:707
+#: ../lib/gui.c:813
 msgid _Web Service
 msgstr _Webová služba
 
-#: ../lib/gui.c:715
+#: ../lib/gui.c:821
 msgid _Spell Checker
 msgstr _Kontrola pravopisu
 
-#: ../lib/gui.c:843
+#: ../lib/gui.c:949
 msgid Xfce4 Dictionary
 msgstr Slovník Xfce4
 
-#: ../lib/gui.c:852
+#: ../lib/gui.c:958
 msgid Copyright © 2006-2011 Enrico Tröger
 msgstr Copyright © 2006-2011 Enrico Tröger
 
-#: ../lib/gui.c:855
+#: ../lib/gui.c:961
 msgid translator-credits
 msgstr Michal Várady miko.v...@gmail.com
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] squeeze:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to d558d2c78ce612cda662d86cfcab1662e5c877aa (commit)
   from d1927b8e6161d27357cbc593e6d6d9f944cc6af0 (commit)

commit d558d2c78ce612cda662d86cfcab1662e5c877aa
Author: Michal Várady miko.v...@gmail.com
Date:   Sun Dec 18 12:07:19 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po | 1053 +-
 1 files changed, 494 insertions(+), 559 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 3a2502e..2dfcb96 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,646 +1,581 @@
-# Czech translation of the squeeze package.
-# Copyright (C) 2006-2007 Stephan Arts.
-# This file is distributed under the same license as the squeeze package.
-# Michal Várady miko.v...@gmail.com, 2006-2008.
+# Czech translation of the xfce4-dict-plugin package.
+# Copyright (C) 2006-2007 Enrico Tröger
+# This file is distributed under the same license as the xfce4-dict-plugin 
package.
+# Michal Várady miko.v...@gmail.com, 2006-2011.
 #
 msgid 
 msgstr 
-Project-Id-Version: Squeeze 0.2.0\n
-Report-Msgid-Bugs-To: step...@xfce.org\n
-POT-Creation-Date: 2011-08-24 20:32+0200\n
-PO-Revision-Date: 2008-12-22 21:30+0100\n
+Project-Id-Version: xfce4-dict 0.5.0\n
+Report-Msgid-Bugs-To: \n
+POT-Creation-Date: 2011-12-18 09:39+\n
+PO-Revision-Date: 2011-12-18 12:01+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech xfce-i...@xfce.org\n
 Language: cs\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=utf-8\n
+Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n=2  n=4) ? 1 : 2;\n
 
-#: ../libsqueeze/archive.c:272
-msgid Name
-msgstr Název
-
-#: ../libsqueeze/archive.c:274
-msgid Mime type
-msgstr Typ MIME
-
-#: ../squeeze.desktop.in.h:1
-msgid Archive Manager
-msgstr Správce archivů
+#: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:1
+msgid A plugin to query different dictionaries.
+msgstr Zásuvný modul pro získávání dat za slovníků.
+
+#: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
+#: ../src/xfce4-dict.desktop.in.h:2
+#: ../lib/gui.c:734
+#: ../lib/prefs.c:270
+msgid Dictionary
+msgstr Slovník
+
+#: ../panel-plugin/xfce4-dict-plugin.c:347
+#: ../panel-plugin/xfce4-dict-plugin.c:473
+#: ../src/xfce4-dict.c:200
+#: ../lib/spell.c:243
+#: ../lib/gui.c:517
+msgid Ready
+msgstr Připraven
+
+#: ../panel-plugin/xfce4-dict-plugin.c:413
+msgid Look up a word
+msgstr Vyhledat slovo
+
+#: ../panel-plugin/xfce4-dict-plugin.c:444
+#: ../lib/gui.c:758
+msgid Search term
+msgstr Hledat pojem
+
+#: ../src/xfce4-dict.c:51
+msgid Search the given text using a Dict server(RFC 2229)
+msgstr Hledat zadaný text pomocí serveru Dict (RFC 2229)
+
+#: ../src/xfce4-dict.c:52
+msgid Search the given text using a web-based search engine
+msgstr Hledat zadaný text pomocí enginu založeného na webovém vyhledávání
+
+#: ../src/xfce4-dict.c:53
+msgid Check the given text with a spell checker
+msgstr Zkontrolovat zadaný text kontrolou pravopisu
+
+#: ../src/xfce4-dict.c:54
+msgid Grab the focus on the text field in the panel
+msgstr Umístit kurzor do textového pole v panelu
+
+#: ../src/xfce4-dict.c:55
+msgid Start stand-alone application even if the panel plugin is loaded
+msgstr Spustit samostatnou aplikaci přestože je spuštěn zásuvný modul panelu
+
+#: ../src/xfce4-dict.c:56
+msgid Grabs the PRIMARY selection content and uses it as search text
+msgstr Použije obsah PRIMÁRNÍHO výběru pro hledání
+
+#: ../src/xfce4-dict.c:57
+msgid Be verbose
+msgstr Podrobný výpis
+
+#: ../src/xfce4-dict.c:58
+msgid Show version information
+msgstr Zobrazí informaci o verzi
+
+#: ../src/xfce4-dict.c:131
+msgid [TEXT]
+msgstr [TEXT]
+
+#: ../src/xfce4-dict.c:147
+#, c-format
+msgid Please report bugs to %s.
+msgstr Prosíme, abyste chyby hlásili na adresu %s.
 
-#: ../squeeze.desktop.in.h:2
-msgid Create and manage archives with the archive manager
-msgstr Vytváří a spravuje archivy správcem archivů
+#: ../src/xfce4-dict.desktop.in.h:1
+#: ../lib/gui.c:957
+msgid A client program to query different dictionaries.
+msgstr Klientský program pro získávání dat z různých slovníků.
 
-#: ../squeeze.desktop.in.h:3
-msgid Squeeze Archive Manager
-msgstr Správce archivů Squeeze
+#: ../src/xfce4-dict.desktop.in.h:3
+msgid Dictionary Client
+msgstr Klient slovníku
 
-#.
-#. * Could not open archive (mime type not supported or file did not exist)
-#. * Should be a more specific error message.
-#.
-#: ../src/application.c:160 ../src/application.c:251
-msgid Could not open archive, MIME-type unsupported or file did not exist
-msgstr Nelze otevřít archiv, typ MIME není podporován nebo soubor neexistuje
+#: ../lib/spell.c:75
+msgid Spell Checker Results:
+msgstr Výsledky kontroly pravopisu:
 
-#: ../src/application.c:190 

[Xfce4-commits] squeeze:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to a0d67352cbcb52370eed052f3671921583a114da (commit)
   from d558d2c78ce612cda662d86cfcab1662e5c877aa (commit)

commit a0d67352cbcb52370eed052f3671921583a114da
Author: Michal Várady miko.v...@gmail.com
Date:   Sun Dec 18 12:09:41 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po | 1074 +-
 1 files changed, 576 insertions(+), 498 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 2dfcb96..47bf54f 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,581 +1,659 @@
-# Czech translation of the xfce4-dict-plugin package.
-# Copyright (C) 2006-2007 Enrico Tröger
-# This file is distributed under the same license as the xfce4-dict-plugin 
package.
-# Michal Várady miko.v...@gmail.com, 2006-2011.
+# Czech translation of the squeeze package.
+# Copyright (C) 2006-2007 Stephan Arts.
+# This file is distributed under the same license as the squeeze package.
+# Michal Várady miko.v...@gmail.com, 2006-2008.
 #
 msgid 
 msgstr 
-Project-Id-Version: xfce4-dict 0.5.0\n
+Project-Id-Version: Squeeze 0.2.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-18 09:39+\n
-PO-Revision-Date: 2011-12-18 12:01+0100\n
+POT-Creation-Date: 2011-12-18 08:15+\n
+PO-Revision-Date: 2011-12-18 12:07+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech xfce-i...@xfce.org\n
 Language: cs\n
 MIME-Version: 1.0\n
-Content-Type: text/plain; charset=UTF-8\n
+Content-Type: text/plain; charset=utf-8\n
 Content-Transfer-Encoding: 8bit\n
 Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n=2  n=4) ? 1 : 2;\n
 
-#: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:1
-msgid A plugin to query different dictionaries.
-msgstr Zásuvný modul pro získávání dat za slovníků.
-
-#: ../panel-plugin/xfce4-dict-plugin.desktop.in.in.h:2
-#: ../src/xfce4-dict.desktop.in.h:2
-#: ../lib/gui.c:734
-#: ../lib/prefs.c:270
-msgid Dictionary
-msgstr Slovník
-
-#: ../panel-plugin/xfce4-dict-plugin.c:347
-#: ../panel-plugin/xfce4-dict-plugin.c:473
-#: ../src/xfce4-dict.c:200
-#: ../lib/spell.c:243
-#: ../lib/gui.c:517
-msgid Ready
-msgstr Připraven
-
-#: ../panel-plugin/xfce4-dict-plugin.c:413
-msgid Look up a word
-msgstr Vyhledat slovo
-
-#: ../panel-plugin/xfce4-dict-plugin.c:444
-#: ../lib/gui.c:758
-msgid Search term
-msgstr Hledat pojem
-
-#: ../src/xfce4-dict.c:51
-msgid Search the given text using a Dict server(RFC 2229)
-msgstr Hledat zadaný text pomocí serveru Dict (RFC 2229)
-
-#: ../src/xfce4-dict.c:52
-msgid Search the given text using a web-based search engine
-msgstr Hledat zadaný text pomocí enginu založeného na webovém vyhledávání
-
-#: ../src/xfce4-dict.c:53
-msgid Check the given text with a spell checker
-msgstr Zkontrolovat zadaný text kontrolou pravopisu
-
-#: ../src/xfce4-dict.c:54
-msgid Grab the focus on the text field in the panel
-msgstr Umístit kurzor do textového pole v panelu
-
-#: ../src/xfce4-dict.c:55
-msgid Start stand-alone application even if the panel plugin is loaded
-msgstr Spustit samostatnou aplikaci přestože je spuštěn zásuvný modul panelu
-
-#: ../src/xfce4-dict.c:56
-msgid Grabs the PRIMARY selection content and uses it as search text
-msgstr Použije obsah PRIMÁRNÍHO výběru pro hledání
-
-#: ../src/xfce4-dict.c:57
-msgid Be verbose
-msgstr Podrobný výpis
-
-#: ../src/xfce4-dict.c:58
-msgid Show version information
-msgstr Zobrazí informaci o verzi
-
-#: ../src/xfce4-dict.c:131
-msgid [TEXT]
-msgstr [TEXT]
-
-#: ../src/xfce4-dict.c:147
+#: ../libsqueeze/archive.c:272
+msgid Name
+msgstr Název
+
+#: ../libsqueeze/archive.c:274
+msgid Mime type
+msgstr Typ MIME
+
+#: ../squeeze.desktop.in.h:1
+msgid Archive Manager
+msgstr Správce archivů
+
+#: ../squeeze.desktop.in.h:2
+msgid Create and manage archives with the archive manager
+msgstr Vytváří a spravuje archivy správcem archivů
+
+#: ../squeeze.desktop.in.h:3
+msgid Squeeze Archive Manager
+msgstr Správce archivů Squeeze
+
+#.
+#. * Could not open archive (mime type not supported or file did not exist)
+#. * Should be a more specific error message.
+#.
+#: ../src/application.c:160
+#: ../src/application.c:251
+msgid Could not open archive, MIME-type unsupported or file did not exist
+msgstr Nelze otevřít archiv, typ MIME není podporován nebo soubor neexistuje
+
+#: ../src/application.c:190
+#: ../src/main_window.c:838
+#: ../src/main_window.c:1301
+msgid 
+Squeeze cannot extract this archive type,\n
+the application to support this is missing.
+msgstr 
+Aplikace Squeeze nemůže rozbalit archiv tohoto typu,\n
+potřebná aplikace není dostupná.
+
+#.
+#. * Could not create archive (mime type unsupported)
+#.
+#: ../src/application.c:234
+msgid Could not create archive, MIME-type unsupported
+msgstr Nelze vytvořit archiv, Typ MIME není podporován
+
+#: ../src/application.c:269
+#: 

[Xfce4-commits] squeeze:master l10n: Updated Icelandic (is) translation to 25%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to ce6ae3e773c0636b3f996f96d4a659e2f040a576 (commit)
   from a0d67352cbcb52370eed052f3671921583a114da (commit)

commit ce6ae3e773c0636b3f996f96d4a659e2f040a576
Author: Sveinn í Felli svei...@nett.is
Date:   Sun Dec 18 12:19:43 2011 +0100

l10n: Updated Icelandic (is) translation to 25%

New status: 23 messages complete with 15 fuzzies and 52 untranslated.

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

 po/is.po |   54 +++---
 1 files changed, 19 insertions(+), 35 deletions(-)

diff --git a/po/is.po b/po/is.po
index 5ac9e0f..7a76b76 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,36 +1,34 @@
 # translation of squeeze.master.untitled.po to Icelandic
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Sveinn í Felli svei...@nett.is, 2011.
 msgid 
 msgstr 
 Project-Id-Version: squeeze.master.untitled\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-10 05:03+\n
+POT-Creation-Date: 2011-12-18 08:15+\n
 PO-Revision-Date: 2011-12-10 09:59+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
 Language-Team: Icelandic translation-team...@lists.sourceforge.net\n
-Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: \n
 X-Generator: KBabel 1.11.4\n
 Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n
 
 #: ../libsqueeze/archive.c:272
-#, fuzzy
 msgid Name
-msgstr Nafn
+msgstr Heiti
 
 #: ../libsqueeze/archive.c:274
 msgid Mime type
-msgstr 
+msgstr MIME-tegund
 
 #: ../squeeze.desktop.in.h:1
-#, fuzzy
 msgid Archive Manager
-msgstr Skráarsafnstjóri
+msgstr Safnskráastjóri
 
 #: ../squeeze.desktop.in.h:2
 msgid Create and manage archives with the archive manager
@@ -40,10 +38,9 @@ msgstr 
 msgid Squeeze Archive Manager
 msgstr 
 
-#.
 #. * Could not open archive (mime type not supported or file did not exist)
 #. * Should be a more specific error message.
-#.
+#. 
 #: ../src/application.c:160 ../src/application.c:251
 msgid Could not open archive, MIME-type unsupported or file did not exist
 msgstr 
@@ -54,9 +51,8 @@ msgid 
 the application to support this is missing.
 msgstr 
 
-#.
 #. * Could not create archive (mime type unsupported)
-#.
+#. 
 #: ../src/application.c:234
 msgid Could not create archive, MIME-type unsupported
 msgstr 
@@ -106,38 +102,34 @@ msgstr 
 
 #: ../src/button_drag_box.c:85
 msgid Visible:
-msgstr 
+msgstr Sýnilegt:
 
 #: ../src/button_drag_box.c:96
-#, fuzzy
 msgid Available:
 msgstr Tiltækt:
 
 #: ../src/extract_dialog.c:76
 msgid bExtract files:/b
-msgstr 
+msgstr bAfþjappa skrám:/b
 
 #: ../src/extract_dialog.c:77
 msgid bOptions:/b
-msgstr 
+msgstr bValkostir:/b
 
 #: ../src/extract_dialog.c:88
-#, fuzzy
 msgid All files
-msgstr Allar skrár
+msgstr Öllum skrám
 
 #: ../src/extract_dialog.c:89
 msgid Selected files
-msgstr 
+msgstr Völdum skrám
 
 #: ../src/extract_dialog.c:101 ../src/main_window.c:457
 #: ../src/main_window.c:1255
-#, fuzzy
 msgid Extract
 msgstr Afþjappa
 
 #: ../src/extract_dialog.c:114
-#, fuzzy
 msgid Extract archive
 msgstr Afþjappa skráarsafn
 
@@ -154,7 +146,6 @@ msgid [file1] [file2] ... [fileN]
 msgstr 
 
 #: ../src/main.c:68
-#, fuzzy
 msgid Version information
 msgstr Útgáfuupplýsingar
 
@@ -164,7 +155,6 @@ msgstr 
 
 #: ../src/main.c:102
 #, c-format
-#, fuzzy
 msgid 
 %s: %s\n
 Try %s --help to see a full list of available command line options.\n
@@ -196,56 +186,51 @@ msgstr 
 
 #. File menu
 #: ../src/main_window.c:301
-#, fuzzy
 msgid _File
 msgstr _Skrá
 
 #. Action menu: ref all the childs
 #: ../src/main_window.c:329
 msgid _Action
-msgstr 
+msgstr _Aðgerð
 
 #: ../src/main_window.c:334
 msgid _Add files
-msgstr 
+msgstr _Bæta við skrám
 
 #: ../src/main_window.c:340
 msgid _Add _folders
-msgstr 
+msgstr _Bæta við möppum
 
 #: ../src/main_window.c:346
-#, fuzzy
 msgid _Extract
 msgstr _Afþjappa
 
 #. View menu
 #: ../src/main_window.c:379
-#, fuzzy
 msgid _View
 msgstr S_koða
 
 #. Help menu
 #: ../src/main_window.c:403
-#, fuzzy
 msgid _Help
 msgstr _Hjálp
 
 #: ../src/main_window.c:449 ../src/main_window.c:866
 msgid Add files
-msgstr 
+msgstr Bæta við skrám
 
 #: ../src/main_window.c:453 ../src/main_window.c:913
 msgid Add folders
-msgstr 
+msgstr Bæta við möppum
 
 #: ../src/main_window.c:731
 msgid Open archive in new window
 msgstr 
 
 #: ../src/main_window.c:737
-#, fuzzy
 msgid Open archive
-msgstr Opna skráarsafn
+msgstr Opna skráasafn
 
 #: ../src/main_window.c:938
 msgid 
@@ -446,4 +431,3 @@ msgstr Eiginleikar
 #, fuzzy
 msgid Location:
 msgstr Staðsetning:
-
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to d91857941a85a66e4f56928e1e9d2c81b519c93d (commit)
   from f133d08904a752fc7ddf5ce751fd3ef36e7a73a5 (commit)

commit d91857941a85a66e4f56928e1e9d2c81b519c93d
Author: Aleksandr Ponomarenko davian...@gmail.com
Date:   Sun Dec 18 12:24:26 2011 +0100

l10n: Updated Russian (ru) translation to 99%

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

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

 po/ru.po |   20 +---
 1 files changed, 5 insertions(+), 15 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index bb7f368..c5ffeda 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -2,19 +2,19 @@
 # This file is distributed under the same license as the ristretto package.
 # Stefan Zerkalica zerkal...@gmail.com, 2008.
 # Denis Koryavov dkorya...@yandex.ru, 2010.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: ristretto\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
+POT-Creation-Date: 2011-12-18 08:12+\n
 PO-Revision-Date: 2011-09-10 03:49+0700\n
 Last-Translator: Urmas davian...@gmail.com\n
 Language-Team: Russian\n
-Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: \n
 X-Poedit-Language: Russian\n
 
 #: ../src/main.c:61
@@ -142,7 +142,6 @@ msgstr _Сделать фоном рабочего стола
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
 msgstr _Масштаб
 
@@ -223,7 +222,6 @@ msgid _Position
 msgstr _Позиция
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
 msgstr По_ложение панели эскизов
 
@@ -339,7 +337,6 @@ msgid Developer:
 msgstr Разработчик:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
 msgstr 
 Ristretto - быстрый и легковесный просмотрщик изображений для рабочего 
@@ -379,7 +376,6 @@ msgid Are you sure you want to delete image '%s' from 
disk?
 msgstr Удалить изображение '%s' с диска?
 
 #: ../src/privacy_dialog.c:151
-#, fuzzy
 msgid Time range to clear:
 msgstr За:
 
@@ -436,7 +432,6 @@ msgid Thumbnails
 msgstr Эскизы
 
 #: ../src/preferences_dialog.c:228
-#, fuzzy
 msgid 
 The thumbnail bar can be automatically hidden \n
 when the window is fullscreen.
@@ -445,7 +440,6 @@ msgstr 
 при переходе в полноэкранный режим
 
 #: ../src/preferences_dialog.c:230
-#, fuzzy
 msgid Hide thumbnail bar when fullscreen
 msgstr Спрятать панель эскизов в полноэкранном режиме
 
@@ -470,12 +464,10 @@ msgid Control
 msgstr Управление
 
 #: ../src/preferences_dialog.c:293
-#, fuzzy
 msgid Scroll wheel
-msgstr Колесо мыши
+msgstr Колесико мыши
 
 #: ../src/preferences_dialog.c:296
-#, fuzzy
 msgid Invert zoom direction
 msgstr Изменить направление масштабирования
 
@@ -560,9 +552,8 @@ msgid border width
 msgstr Ширина рамки
 
 #: ../src/thumbnail_bar.c:216
-#, fuzzy
 msgid the border width of the thumbnail bar
-msgstr Ширина рамки панели эскизов
+msgstr ширина рамки панели эскизов
 
 #: ../src/xfce_wallpaper_manager.c:335 ../src/gnome_wallpaper_manager.c:234
 msgid Style:
@@ -605,7 +596,6 @@ msgid Zoomed
 msgstr Приближенно
 
 #: ../ristretto.desktop.in.h:2
-#, fuzzy
 msgid Look at your images easily
 msgstr Просмотр фотографий — это просто
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 7a199ec2ca7c321e541da59c80774d1a4b38aef7 (commit)
   from d91857941a85a66e4f56928e1e9d2c81b519c93d (commit)

commit 7a199ec2ca7c321e541da59c80774d1a4b38aef7
Author: Aleksandr Ponomarenko davian...@gmail.com
Date:   Sun Dec 18 12:24:44 2011 +0100

l10n: Updated Russian (ru) translation to 100%

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

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

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

diff --git a/po/ru.po b/po/ru.po
index c5ffeda..9fdd800 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -242,7 +242,6 @@ msgstr Показать панель _навигации
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
 msgstr Показать панель _эскизов
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 9f272861caab7d07f47f6166422010704a590122 (commit)
   from 7a199ec2ca7c321e541da59c80774d1a4b38aef7 (commit)

commit 9f272861caab7d07f47f6166422010704a590122
Author: Sergio Marques smarque...@gmail.com
Date:   Sun Dec 18 12:42:18 2011 +0100

l10n: Updated Portuguese (pt) translation to 100%

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

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

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

diff --git a/po/pt.po b/po/pt.po
index e0ec88b..91849da 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2,19 +2,19 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # Nuno Miguel nu...@netcabo.pt, 2007
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: ristretto 0.0.22\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
+POT-Creation-Date: 2011-12-18 08:12+\n
 PO-Revision-Date: 2010-01-15 14:16-\n
 Last-Translator: Sérgio Marques smarque...@gmail.com\n
 Language-Team: \n
-Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: \n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 X-Poedit-Language: Portuguese\n
 X-Poedit-Country: PORTUGAL\n
@@ -144,9 +144,8 @@ msgstr _Definir como papel de parede
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
-msgstr _Tamanho
+msgstr Taman_ho
 
 #: ../src/main_window.c:295
 msgid Zoom _In
@@ -225,9 +224,8 @@ msgid _Position
 msgstr _Posição
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
-msgstr _Posição das miniaturas
+msgstr _Posição da barra de miniaturas
 
 #. Misc
 #: ../src/main_window.c:325
@@ -246,9 +244,8 @@ msgstr Mostrar barra de _navegação
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
-msgstr Mostrar _barra de miniaturas
+msgstr Mostrar barra de minia_turas
 
 #. Sort by Filename
 #: ../src/main_window.c:344
@@ -341,9 +338,8 @@ msgid Developer:
 msgstr Programador:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
-msgstr O Ristretto é um visualizador de imagens para o Xfce.
+msgstr O Ristretto é um visualizador de imagens para o ambiente de trabalho 
Xfce.
 
 #: ../src/main_window.c:2398
 msgid translator-credits
@@ -379,9 +375,8 @@ msgid Are you sure you want to delete image '%s' from 
disk?
 msgstr Tem a certeza que quer apagar do disco a imagem \%s\?
 
 #: ../src/privacy_dialog.c:151
-#, fuzzy
 msgid Time range to clear:
-msgstr Intervalo:
+msgstr Intervalo de tempo a limpar:
 
 #: ../src/privacy_dialog.c:155
 msgid Cleanup
@@ -436,7 +431,6 @@ msgid Thumbnails
 msgstr Miniaturas
 
 #: ../src/preferences_dialog.c:228
-#, fuzzy
 msgid 
 The thumbnail bar can be automatically hidden \n
 when the window is fullscreen.
@@ -445,7 +439,6 @@ msgstr 
 se o visualizador estiver em ecrã completo.
 
 #: ../src/preferences_dialog.c:230
-#, fuzzy
 msgid Hide thumbnail bar when fullscreen
 msgstr Ocultar barra de miniaturas se em ecrã completo
 
@@ -470,12 +463,10 @@ msgid Control
 msgstr Controlo
 
 #: ../src/preferences_dialog.c:293
-#, fuzzy
 msgid Scroll wheel
 msgstr Roda de deslocamento
 
 #: ../src/preferences_dialog.c:296
-#, fuzzy
 msgid Invert zoom direction
 msgstr Reverter orientação
 
@@ -560,7 +551,6 @@ msgid border width
 msgstr largura do contorno
 
 #: ../src/thumbnail_bar.c:216
-#, fuzzy
 msgid the border width of the thumbnail bar
 msgstr a largura do contorno da barra de miniaturas
 
@@ -605,7 +595,6 @@ msgid Zoomed
 msgstr Ampliada
 
 #: ../ristretto.desktop.in.h:2
-#, fuzzy
 msgid Look at your images easily
 msgstr Ver imagens com simplicidade
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to edff776698caed15192d20ab2801daf47e42424e (commit)
   from 6a34fa55dadba6efb026ba8690c66e62a36bf51e (commit)

commit edff776698caed15192d20ab2801daf47e42424e
Author: Sergio Marques smarque...@gmail.com
Date:   Sun Dec 18 12:43:28 2011 +0100

l10n: Updated Portuguese (pt) translation to 100%

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

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

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

diff --git a/po/pt.po b/po/pt.po
index 87be7a9..d972666 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@
 # This file is distributed under the same license as the orage package.
 # Nuno Donato nunodon...@gmail.com, 2004.
 # Nuno Miguel nu...@netcabo.pt
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: orage 4.6.1\n
@@ -521,7 +521,7 @@ msgstr Preferências do relógio Orage
 #. * %B  : full month name
 #. * %Y  : four digit year
 #. * %V  : ISO week number
-#.
+#. 
 #: ../panel-plugin/xfce4-orageclock-plugin.c:627
 msgid %A %d %B %Y/%V
 msgstr %A %d %B %Y/%V
@@ -1785,7 +1785,7 @@ msgid Never
 msgstr Nunca
 
 #: ../src/mainbox.c:450 ../src/mainbox.c:457
-#, fuzzy, c-format
+#, c-format
 msgid 
 Title: %s\n
  Location: %s\n
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-weather-plugin:master l10n: Updated Arabic (ar) translation to 4%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 6cf4188c2b0bc68f75f7c115bea721335e7aed52 (commit)
   from 6d71c948384a11c51073e44e704550c750b64f18 (commit)

commit 6cf4188c2b0bc68f75f7c115bea721335e7aed52
Author: كريم أولاد الشلحة herr.linu...@gmail.com
Date:   Sun Dec 18 12:44:52 2011 +0100

l10n: Updated Arabic (ar) translation to 4%

New status: 12 messages complete with 0 fuzzies and 246 untranslated.

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

 po/ar.po |   30 --
 1 files changed, 16 insertions(+), 14 deletions(-)

diff --git a/po/ar.po b/po/ar.po
index ec8f60c..d0537bf 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,3 +1,4 @@
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce\n
@@ -6,55 +7,55 @@ msgstr 
 PO-Revision-Date: 2008-07-15 20:09+0200\n
 Last-Translator: Mohamed Magdy mohame...@gmail.com\n
 Language-Team: Arabeyes d...@arabeyes.org\n
-Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: \n
 X-Poedit-Language: Arabic\n
 
 #: ../panel-plugin/weather.c:110
 msgid V
-msgstr 
+msgstr V
 
 #: ../panel-plugin/weather.c:113
 msgid U
-msgstr 
+msgstr U
 
 #: ../panel-plugin/weather.c:116
 msgid WD
-msgstr 
+msgstr WD
 
 #: ../panel-plugin/weather.c:119 ../panel-plugin/weather.c:122
 msgid P
-msgstr 
+msgstr P
 
 #: ../panel-plugin/weather.c:125
 msgid F
-msgstr 
+msgstr F
 
 #: ../panel-plugin/weather.c:128
 msgid T
-msgstr 
+msgstr T
 
 #: ../panel-plugin/weather.c:131
 msgid D
-msgstr 
+msgstr D
 
 #: ../panel-plugin/weather.c:134
 msgid H
-msgstr 
+msgstr H
 
 #: ../panel-plugin/weather.c:137
 msgid WS
-msgstr 
+msgstr WS
 
 #: ../panel-plugin/weather.c:140
 msgid WG
-msgstr 
+msgstr WG
 
 #: ../panel-plugin/weather.c:260 ../panel-plugin/weather.c:760
 msgid Cannot update weather data
-msgstr 
+msgstr لا يمكن تحميل بيانات الطقس
 
 #: ../panel-plugin/weather.c:693
 #, c-format
@@ -64,9 +65,10 @@ msgstr 
 #: ../panel-plugin/weather.c:721 ../panel-plugin/weather-summary.c:611
 #: ../panel-plugin/weather.desktop.in.in.h:2
 msgid Weather Update
-msgstr 
+msgstr تحديث الطقس
 
-#. add refresh button to right click menu, for people who missed the middle 
mouse click feature
+#. add refresh button to right click menu, for people who missed the middle
+#. mouse click feature
 #: ../panel-plugin/weather.c:843
 msgid _Forecast
 msgstr 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 182bee5b3158cbff7cf40a461faab6d18655fd86 (commit)
   from c40475d70c4a7ffaf4dd95f036df0d4034670efe (commit)

commit 182bee5b3158cbff7cf40a461faab6d18655fd86
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 13:43:30 2011 +0100

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

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

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

 po/ca.po |   10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 584719d..6d9c729 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-session 4.4.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-06 18:24+\n
-PO-Revision-Date: 2011-12-06 20:49+0100\n
+POT-Creation-Date: 2011-12-18 11:00+\n
+PO-Revision-Date: 2011-12-18 13:40+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: catalan xfce-i...@xfce.org\n
 Language: \n
@@ -182,7 +182,7 @@ msgstr 
 
 #: ../settings/main.c:128
 msgid _Application Autostart
-msgstr Inici automàtic d'_aplicació
+msgstr Inici automàtic d'_aplicacions
 
 #: ../settings/session-editor.c:61
 msgid If running
@@ -194,7 +194,7 @@ msgstr Sempre
 
 #: ../settings/session-editor.c:63
 msgid Immediately
-msgstr Immediatament
+msgstr Immediat
 
 #: ../settings/session-editor.c:64
 msgid Never
@@ -280,7 +280,7 @@ msgstr Programa
 
 #: ../settings/session-editor.c:719
 msgid Restart Style
-msgstr Reinicia l'estil
+msgstr Tipus de reinici
 
 #: ../settings/splash-settings.c:291 ../settings/splash-settings.c:294
 #: ../settings/splash-settings.c:297 ../settings/splash-settings.c:300
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 92b991feba570b59b9aa0306b55ab98e9339a73e (commit)
   from 7ddb8ecb2467a92adeb95d9adf21d4f43cabf6a5 (commit)

commit 92b991feba570b59b9aa0306b55ab98e9339a73e
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 13:47:47 2011 +0100

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index 1ed6a89..7b7f9d3 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@ msgid 
 msgstr 
 Project-Id-Version: \n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-06 17:54+\n
+POT-Creation-Date: 2011-12-18 10:30+\n
 PO-Revision-Date: \n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: catalan xfce-i...@xfce.org\n
@@ -420,7 +420,7 @@ msgstr _Mostra
 
 #: ../panel/panel-preferences-dialog.glade.h:11
 msgid Don't _reserve space on borders
-msgstr No guardis espais a les vores
+msgstr No _guardis espais a les vores
 
 #: ../panel/panel-preferences-dialog.glade.h:12
 #: ../plugins/launcher/launcher-dialog.glade.h:9
@@ -723,7 +723,7 @@ msgstr _Accions
 
 #: ../plugins/actions/actions-dialog.glade.h:10
 msgid _Show confirmation dialog
-msgstr Mostra el diàleg de confirmació
+msgstr _Mostra el diàleg de confirmació
 
 #: ../plugins/actions/actions.c:159
 msgid Log Out
@@ -789,7 +789,7 @@ msgstr Suspendre
 
 #: ../plugins/actions/actions.c:192
 msgid Sus_pend
-msgstr _Sus_pèn
+msgstr Sus_pèn
 
 #: ../plugins/actions/actions.c:193
 msgid Do you want to suspend to RAM?
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 847fb4780c1455c150b9deb80b2c090040be6373 (commit)
   from f480fe61a12f0b387da69c50675b049ac12213d0 (commit)

commit 847fb4780c1455c150b9deb80b2c090040be6373
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 13:59:35 2011 +0100

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

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

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

 po/ca.po |  528 +++---
 1 files changed, 297 insertions(+), 231 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index ffb3964..cbfd33b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,16 +3,17 @@
 # Copyright (C) 2008 THE xfce4-power-manager'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-power-manager
 # package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2008-2010.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-01-30 12:01+0100\n
-PO-Revision-Date: 2010-01-30 15:09+0100\n
+POT-Creation-Date: 2011-12-18 10:39+\n
+PO-Revision-Date: 2011-12-18 13:58+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
+Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -50,197 +51,199 @@ msgid Consider the computer on low power at:
 msgstr Considera que el nivell de baixa energia comença a:
 
 #. Hibernate menu option
-#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:789
-#: ../settings/xfpm-settings.c:857 ../settings/xfpm-settings.c:995
-#: ../settings/xfpm-settings.c:1160 ../settings/xfpm-settings.c:1215
-#: ../settings/xfpm-settings.c:1265 ../src/xfpm-power.c:508
-#: ../src/xfpm-power.c:769
+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817
+#: ../settings/xfpm-settings.c:885 ../settings/xfpm-settings.c:1034
+#: ../settings/xfpm-settings.c:1211 ../settings/xfpm-settings.c:1268
+#: ../settings/xfpm-settings.c:1320 ../src/xfpm-power.c:484
+#: ../src/xfpm-power.c:779
 msgid Hibernate
 msgstr Hiberna
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
+msgid Level:
+msgstr Nivell:
+
+#: ../data/interfaces/xfpm-settings.ui.h:10
 msgid Lock screen when going for suspend/hibernate
 msgstr Bloca la pantalla quan es vulgui suspendre o hibernar
 
-#: ../data/interfaces/xfpm-settings.ui.h:10 ../src/xfpm-power-common.c:131
+#: ../data/interfaces/xfpm-settings.ui.h:11 ../src/xfpm-power-common.c:132
 msgid Monitor
 msgstr Pantalla
 
-#: ../data/interfaces/xfpm-settings.ui.h:11
+#: ../data/interfaces/xfpm-settings.ui.h:12
 msgid Monitor power management control
 msgstr Controlador de gestió d'energia de la pantalla
 
-#: ../data/interfaces/xfpm-settings.ui.h:12 ../settings/xfpm-settings.c:778
-#: ../settings/xfpm-settings.c:846 ../settings/xfpm-settings.c:984
-#: ../settings/xfpm-settings.c:1149 ../settings/xfpm-settings.c:1204
-#: ../settings/xfpm-settings.c:1254
+#: ../data/interfaces/xfpm-settings.ui.h:13 ../settings/xfpm-settings.c:806
+#: ../settings/xfpm-settings.c:874 ../settings/xfpm-settings.c:1023
+#: ../settings/xfpm-settings.c:1200 ../settings/xfpm-settings.c:1257
+#: ../settings/xfpm-settings.c:1309
 msgid Nothing
 msgstr Res
 
-#: ../data/interfaces/xfpm-settings.ui.h:13
+#: ../data/interfaces/xfpm-settings.ui.h:14
 msgid Power manager settings
 msgstr Ajustament del gestor d'energia
 
-#: ../data/interfaces/xfpm-settings.ui.h:14
+#: ../data/interfaces/xfpm-settings.ui.h:15
 msgid Prefer power savings over performance
 msgstr Millor estalvi d'energia que rendiment
 
-#: ../data/interfaces/xfpm-settings.ui.h:15
+#: ../data/interfaces/xfpm-settings.ui.h:16
 msgid Put display to sleep when computer is inactive for:
 msgstr Deixa la pantalla adormida quan l'ordinador està inactiu durant:
 
-#: ../data/interfaces/xfpm-settings.ui.h:16
+#: ../data/interfaces/xfpm-settings.ui.h:17
 msgid Put the computer to sleep when inactive for:
 msgstr Deixa l'ordinador adormit quan l'ordinador està inactiu durant:
 
-#: ../data/interfaces/xfpm-settings.ui.h:17
+#: ../data/interfaces/xfpm-settings.ui.h:18
 msgid Reduce screen brightness when computer is inactive for:
 msgstr Disminueix la brillantor de la pantalla quan estigui inactiva durant:
 
-#: ../data/interfaces/xfpm-settings.ui.h:18
+#: ../data/interfaces/xfpm-settings.ui.h:19
 msgid Set computer inactivity sleep mode:
 msgstr Ajusta el mode d'adormiment de l'ordinador:
 
-#: ../data/interfaces/xfpm-settings.ui.h:19
+#: ../data/interfaces/xfpm-settings.ui.h:20
 msgid Set monitor sleep mode:
 msgstr Ajusta el mode d'adormiment de la pantalla:
 
-#: ../data/interfaces/xfpm-settings.ui.h:20
+#: ../data/interfaces/xfpm-settings.ui.h:21
 msgid Show notifications to notify about the battery state
 msgstr Mostra notificacions per 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to db6793037f0fb1e5debfb019cebfa2d554e6416b (commit)
   from 6f24d3fd3a4f7ba93314f03ea1efcf7590c724e6 (commit)

commit db6793037f0fb1e5debfb019cebfa2d554e6416b
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 14:05:38 2011 +0100

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

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

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

 po/ca.po |  114 ++
 1 files changed, 77 insertions(+), 37 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 3ad2f30..53409e6 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,26 +2,27 @@
 # Traduccions al català del paquet «tumbler».
 # Copyright (C) 2009 THE tumbler'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the tumbler package.
-# 
-# Carles Muñoz Gorriz carle...@internautas.org, 2009.
-# 
+#
+# Carles Muñoz Gorriz carle...@internautas.org, 2009, 2011.
+# Harald Servat redcr...@gmail.com, 2009.
+#
 msgid 
 msgstr 
 Project-Id-Version: Tumbler\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-03-15 11:05+\n
-PO-Revision-Date: 2009-12-20 12:51+0100\n
-Last-Translator: Harald Servat redcr...@gmail.com\n
+POT-Creation-Date: 2011-12-18 09:00+\n
+PO-Revision-Date: 2011-12-18 14:04+0100\n
+Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan xfce-i...@xfce.org\n
+Language: ca\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: ca\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 X-Poedit-Language: Catalan\n
 X-Poedit-SourceCharset: utf-8\n
 
-#: ../tumblerd/tumbler-cache-service.c:416
+#: ../tumblerd/tumbler-cache-service.c:413
 #, c-format
 msgid Another thumbnail cache service is already running
 msgstr Un altre servei de memòria cau de miniatures ja s'està executant
@@ -36,12 +37,12 @@ msgstr No hi ha cap miniatura disponible per «%s»
 msgid The thumbnailer service is shutting down
 msgstr S'està tancant el servei de miniatures
 
-#: ../tumblerd/tumbler-service.c:760
+#: ../tumblerd/tumbler-service.c:758
 #, c-format
 msgid Another generic thumbnailer is already running
 msgstr Un altres sistema genèric de miniatures ja s'està executant
 
-#: ../tumblerd/tumbler-service.c:878
+#: ../tumblerd/tumbler-service.c:867
 msgid Unsupported thumbnail flavor requested
 msgstr La variant de la miniatura requerida no està suportada
 
@@ -54,64 +55,69 @@ msgstr Ha fallat la crida al generador de miniatures: ha 
expirat el temps
 msgid Failed to call the specialized thumbnailer: %s
 msgstr Ha fallat la crida al generador de miniatures: %s
 
-#: ../tumblerd/tumbler-manager.c:468 ../tumblerd/tumbler-manager.c:874
+#: ../tumblerd/tumbler-manager.c:489 ../tumblerd/tumbler-manager.c:895
 #, c-format
 msgid Failed to load the file \%s\: %s
 msgstr No s'ha pogut carregar el fitxer «%s»: %s
 
-#: ../tumblerd/tumbler-manager.c:486 ../tumblerd/tumbler-manager.c:500
-#: ../tumblerd/tumbler-manager.c:514
+#: ../tumblerd/tumbler-manager.c:507 ../tumblerd/tumbler-manager.c:521
+#: ../tumblerd/tumbler-manager.c:535
 #, c-format
 msgid Malformed section \%s\ in file \%s\: %s
 msgstr Secció mal formada «%s» en el fitxer «%s»: %s
 
-#: ../tumblerd/tumbler-manager.c:527
+#: ../tumblerd/tumbler-manager.c:548
 #, c-format
-msgid Malformed section \%s\ in file \%s\: Mismatch between section name 
and UriScheme/MimeType
-msgstr Secció mal formada «%s» en el fitxer «%s»: diferències entre el nom de 
la secció i el UriScheme/MimeType
+msgid 
+Malformed section \%s\ in file \%s\: Mismatch between section name and 
+UriScheme/MimeType
+msgstr 
+Secció mal formada «%s» en el fitxer «%s»: diferències entre el nom de la 
+secció i el UriScheme/MimeType
 
-#: ../tumblerd/tumbler-manager.c:887 ../tumblerd/tumbler-manager.c:901
-#: ../tumblerd/tumbler-manager.c:915
+#: ../tumblerd/tumbler-manager.c:908 ../tumblerd/tumbler-manager.c:922
+#: ../tumblerd/tumbler-manager.c:936
 #, c-format
 msgid Malformed file \%s\: %s
 msgstr Fitxer amb format erroni «%s»: %s
 
-#: ../tumblerd/tumbler-manager.c:941
+#: ../tumblerd/tumbler-manager.c:962
 #, c-format
 msgid Failed to determine last modified time of \%s\
-msgstr No s'ha pogut determinar quan ha succeït la darrera modificació de 
«%s»
+msgstr 
+No s'ha pogut determinar quan ha succeït la darrera modificació de «%s»
 
-#: ../tumblerd/tumbler-manager.c:1854
+#: ../tumblerd/tumbler-manager.c:1863
 #, c-format
 msgid Another thumbnailer manager is already running
 msgstr Un altre gestor de miniatures ja s'està executant
 
 #. set the application name. Translators: Don't translate Tumbler.
-#: ../tumblerd/main.c:78
+#: ../tumblerd/main.c:83
 msgid Tumbler Thumbnailing Service
 msgstr Servei de miniatures Tumbler
 
-#: ../tumblerd/main.c:93
+#: ../tumblerd/main.c:98
 #, c-format
 msgid Failed to connect to the D-Bus session bus: %s
 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 8ed51c2a00b17344b8a2b4a16d11d34045e6a39d (commit)
   from c73f93b07c6c54252b9a16bb0a988255682cd93e (commit)

commit 8ed51c2a00b17344b8a2b4a16d11d34045e6a39d
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 14:37:09 2011 +0100

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

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

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

 po/ca.po |  538 +++---
 1 files changed, 341 insertions(+), 197 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index b15c9b6..9256941 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,14 +1,14 @@
 # Catalan translations for xfce package.
 # Copyright (C) 2008 THE xfce'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2008-2010.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfce 4-settings\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-02-28 17:23+0100\n
-PO-Revision-Date: 2010-08-31 17:46+0100\n
+POT-Creation-Date: 2011-12-18 11:12+\n
+PO-Revision-Date: 2011-12-18 14:34+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
 Language: \n
@@ -38,13 +38,12 @@ msgid Accessibility
 msgstr Accessibilitat
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:5
-#, fuzzy
 msgid 
 Assistive technologies will be available the\n
 next time you login
 msgstr 
-Els valors per defecte del sistema es recuperaran la propera vegada que 
-entreu.
+Les tecnologies d'assistència estaran disponibles\n
+el següent cop que entreu al sistema
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:7
 msgid Bounce Keys
@@ -63,6 +62,8 @@ msgid 
 If enabled, the session manager will start the required applications for 
 screen readers and magnifiers
 msgstr 
+Si està habilitat, el gestor de sessió iniciarà les aplicacions necessàries 
+per lectors de pantalla i lupes
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:11
 msgid K_eystroke delay:
@@ -82,7 +83,7 @@ msgstr Emulació de ratolí
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:15
 msgid No AT-SPI provider was found on your system
-msgstr 
+msgstr No s'ha trobat en el sistema cap proveïdor AT-SPI
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:16
 msgid R_epeat interval:
@@ -201,11 +202,11 @@ msgstr Retard d'_acceleració:
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:36
 msgid _Assistive Technologies
-msgstr 
+msgstr Tecnologies d'_assistència
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:37
 msgid _Enable assistive technologies
-msgstr 
+msgstr _Habilita les tecnologies d'assistència
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:38
 msgid _Lock sticky keys
@@ -227,54 +228,54 @@ msgstr ms
 msgid pixels/sec
 msgstr píxels/s
 
-#: ../dialogs/accessibility-settings/main.c:44
-#: ../dialogs/appearance-settings/main.c:87
-#: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
+#: ../dialogs/accessibility-settings/main.c:43
+#: ../dialogs/appearance-settings/main.c:94
+#: ../dialogs/display-settings/main.c:102
+#: ../dialogs/keyboard-settings/main.c:38 ../dialogs/mouse-settings/main.c:97
 msgid Settings manager socket
 msgstr Sòcol del gestor de paràmetres
 
-#: ../dialogs/accessibility-settings/main.c:44
-#: ../dialogs/appearance-settings/main.c:87
-#: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
+#: ../dialogs/accessibility-settings/main.c:43
+#: ../dialogs/appearance-settings/main.c:94
+#: ../dialogs/display-settings/main.c:102
+#: ../dialogs/keyboard-settings/main.c:38 ../dialogs/mouse-settings/main.c:97
 msgid SOCKET ID
 msgstr SÒCOL ID
 
-#: ../dialogs/accessibility-settings/main.c:45
-#: ../dialogs/appearance-settings/main.c:88
-#: ../dialogs/display-settings/main.c:104
-#: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mouse-settings/main.c:101
+#: ../dialogs/accessibility-settings/main.c:44
+#: ../dialogs/appearance-settings/main.c:95
+#: ../dialogs/display-settings/main.c:103
+#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:98
 #: ../xfce4-settings-editor/main.c:43 ../xfsettingsd/main.c:77
-#: ../xfce4-settings-manager/main.c:40
+#: ../xfce4-settings-manager/main.c:39
 msgid Version information
 msgstr Informació de la versió
 
-#: ../dialogs/accessibility-settings/main.c:181
-#: ../dialogs/appearance-settings/main.c:828
-#: ../dialogs/display-settings/main.c:1046
-#: ../dialogs/keyboard-settings/main.c:64
-#: ../dialogs/mouse-settings/main.c:1188 ../xfce4-settings-editor/main.c:63
-#: ../xfsettingsd/main.c:130 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 49423fc7c500f64e188ea9660114b3062987c09f (commit)
   from 9f272861caab7d07f47f6166422010704a590122 (commit)

commit 49423fc7c500f64e188ea9660114b3062987c09f
Author: Masato Hashimoto hash...@xfce.org
Date:   Sun Dec 18 14:41:54 2011 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

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

diff --git a/po/ja.po b/po/ja.po
index bba263c..e12680a 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: 0.0.18\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
-PO-Revision-Date: 2011-11-23 20:03+0900\n
+POT-Creation-Date: 2011-12-18 22:29+0900\n
+PO-Revision-Date: 2011-12-18 22:40+0900\n
 Last-Translator: Masato Hashimoto cabezon.hashim...@gmail.com\n
 Language-Team: Japanese xfce-users...@ml.fdiary.net\n
 Language: ja\n
@@ -47,7 +47,8 @@ msgstr 
 %s --help で使用可能なすべてのコマンドライン\n
 オプションが表示されます。\n
 
-#: ../src/main_window.c:55 ../ristretto.desktop.in.h:1
+#: ../src/main_window.c:55
+#: ../ristretto.desktop.in.h:1
 msgid Image Viewer
 msgstr 画像ビューア
 
@@ -144,7 +145,6 @@ msgstr 壁紙に設定(_S)
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
 msgstr 拡大/縮小(_Z)
 
@@ -225,7 +225,6 @@ msgid _Position
 msgstr 位置(_P)
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
 msgstr サムネイルバーの位置(_P)
 
@@ -246,7 +245,6 @@ msgstr ナビゲーションツールバー(_N)
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
 msgstr サムネイルバー(_T)
 
@@ -302,11 +300,13 @@ msgstr 最近開いたファイル(_R)
 msgid Recently used
 msgstr 最近開いたファイル
 
-#: ../src/main_window.c:596 ../src/main_window.c:1022
+#: ../src/main_window.c:596
+#: ../src/main_window.c:1022
 msgid Press open to select an image
 msgstr 画像を選ぶには開くボタンを押してください。
 
-#: ../src/main_window.c:926 ../src/main_window.c:932
+#: ../src/main_window.c:926
+#: ../src/main_window.c:932
 msgid Empty
 msgstr 空
 
@@ -314,7 +314,8 @@ msgstr 空
 msgid Choose 'set wallpaper' method
 msgstr '壁紙に設定' 方式の選択
 
-#: ../src/main_window.c:1846 ../src/preferences_dialog.c:349
+#: ../src/main_window.c:1846
+#: ../src/preferences_dialog.c:349
 msgid 
 Configure which system is currently managing your desktop.\n
 This setting determines the method iRistretto/i will use\n
@@ -323,15 +324,18 @@ msgstr 
 デスクトップを管理しているシステムを指定してください。\n
 iRistretto/i はこの方式でデスクトップの壁紙を設定します。
 
-#: ../src/main_window.c:1871 ../src/preferences_dialog.c:373
+#: ../src/main_window.c:1871
+#: ../src/preferences_dialog.c:373
 msgid None
 msgstr なし
 
-#: ../src/main_window.c:1875 ../src/preferences_dialog.c:377
+#: ../src/main_window.c:1875
+#: ../src/preferences_dialog.c:377
 msgid Xfce
 msgstr Xfce
 
-#: ../src/main_window.c:1879 ../src/preferences_dialog.c:381
+#: ../src/main_window.c:1879
+#: ../src/preferences_dialog.c:381
 msgid GNOME
 msgstr GNOME
 
@@ -340,11 +344,8 @@ msgid Developer:
 msgstr 開発者:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
-msgstr 
-Ristretto は Xfce デスクトップ環境向けの\n
-画像ビューアです。
+msgstr Ristretto は Xfce デスクトップ環境向けの画像ビューアです。
 
 #: ../src/main_window.c:2398
 msgid translator-credits
@@ -362,7 +363,8 @@ msgstr 画像
 msgid .jp(e)g
 msgstr .jp(e)g
 
-#: ../src/main_window.c:2736 ../src/main_window.c:2830
+#: ../src/main_window.c:2736
+#: ../src/main_window.c:2830
 msgid Could not open file
 msgstr ファイルを開けませんでした
 
@@ -380,9 +382,8 @@ msgid Are you sure you want to delete image '%s' from 
disk?
 msgstr 画像 '%s' をドライブから削除してもよろしいですか?
 
 #: ../src/privacy_dialog.c:151
-#, fuzzy
 msgid Time range to clear:
-msgstr クリアする時間:
+msgstr クリア規準:
 
 #: ../src/privacy_dialog.c:155
 msgid Cleanup
@@ -437,16 +438,14 @@ msgid Thumbnails
 msgstr サムネイル
 
 #: ../src/preferences_dialog.c:228
-#, fuzzy
 msgid 
 The thumbnail bar can be automatically hidden \n
 when the window is fullscreen.
 msgstr 
-イメージビューアが全画面化されたときにサムネイルバーを自動的に隠すことができ
-ます。
+イメージビューアが全画面化されたときにサムネイルバーを\n
+自動的に隠すことができます。
 
 #: ../src/preferences_dialog.c:230
-#, fuzzy
 msgid Hide thumbnail bar when fullscreen
 msgstr 全画面時サムネイルを表示しない
 
@@ -470,12 +469,10 @@ msgid Control
 msgstr 制御
 
 #: ../src/preferences_dialog.c:293
-#, fuzzy
 msgid Scroll wheel
 msgstr スクロールホイール
 
 #: ../src/preferences_dialog.c:296
-#, fuzzy
 msgid Invert zoom direction
 msgstr ズームの方向を反転する
 
@@ -536,7 +533,8 @@ msgstr 画像
 msgid bDate taken:/b
 msgstr b変更日時:/b
 
-#: ../src/properties_dialog.c:537 ../src/properties_dialog.c:549
+#: ../src/properties_dialog.c:537
+#: ../src/properties_dialog.c:549
 #: ../src/properties_dialog.c:561
 #, c-format
 msgid b%s/b
@@ -560,11 +558,11 @@ msgid border width
 msgstr 境界線幅
 
 #: ../src/thumbnail_bar.c:216
-#, fuzzy
 msgid the border width of the thumbnail bar
 msgstr 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 176fe6ffa5195130bae8b1b0aaa7c4ca90037e59 (commit)
   from 0c3449c966463eca2762a42d091860b8fa616da2 (commit)

commit 176fe6ffa5195130bae8b1b0aaa7c4ca90037e59
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 14:46:33 2011 +0100

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

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

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

 po/ca.po |   77 -
 1 files changed, 35 insertions(+), 42 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 0ca96a5..bc1fe07 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,14 +1,14 @@
 # Catalan translations for xfconf package.
 # Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2008-2009.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2009, 2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfconf\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-11-28 21:48+0100\n
-PO-Revision-Date: 2009-10-11 16:42+0100\n
+POT-Creation-Date: 2011-12-18 12:27+\n
+PO-Revision-Date: 2011-12-18 14:45+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan xfce-i...@xfce.org\n
 Language: ca\n
@@ -186,11 +186,11 @@ msgstr No es poden iniciar interfícies secundàries
 
 #: ../xfconf-query/main.c:90 ../xfconf-query/main.c:95
 msgid set
-msgstr 
+msgstr estableix
 
 #: ../xfconf-query/main.c:100
 msgid reset
-msgstr 
+msgstr reinicia
 
 #: ../xfconf-query/main.c:176
 msgid Version information
@@ -238,7 +238,7 @@ msgstr Força una matriu d'elements encara que només hi 
hagi un
 
 #: ../xfconf-query/main.c:220
 msgid Invert an existing boolean property
-msgstr 
+msgstr Inverteix una propietat booleana
 
 #: ../xfconf-query/main.c:224
 msgid Monitor a channel for property changes
@@ -247,118 +247,111 @@ msgstr Fa un seguiment dels canvis de les propietats
 #: ../xfconf-query/main.c:246
 #, c-format
 msgid Failed to init libxfconf: %s
-msgstr 
+msgstr No s'ha pogut iniciar el libxfconf: %s
 
 #: ../xfconf-query/main.c:251
 msgid - Xfconf commandline utility
-msgstr 
+msgstr - Xfconf utilitat de línia d'ordres
 
 #: ../xfconf-query/main.c:256
 #, c-format
 msgid Option parsing failed: %s
-msgstr 
+msgstr No s'ha pogut analitzar l'opció: %s
 
 #: ../xfconf-query/main.c:266
 msgid The Xfce development team. All rights reserved.
-msgstr 
+msgstr L'equip de desenvolupament de Xfce. Tots els drets reservats.
 
 #: ../xfconf-query/main.c:267
 #, c-format
 msgid Please report bugs to %s.
-msgstr 
+msgstr Aviseu dels errors a %s.
 
 #: ../xfconf-query/main.c:279
 msgid Channels:
-msgstr 
+msgstr Canals:
 
 #: ../xfconf-query/main.c:295
 msgid No property specified
-msgstr 
+msgstr No s'ha especificat la propietat
 
 #: ../xfconf-query/main.c:301
 msgid --create and --reset options can not be used together
-msgstr 
+msgstr --create i --reset no es poden emprar juntes
 
 #: ../xfconf-query/main.c:307
 msgid --create and --reset options can not be used together with --list
-msgstr 
+msgstr --create i --reset options no es poden emprar amb l'opció --list
 
 #: ../xfconf-query/main.c:319
-#, fuzzy, c-format
+#, c-format
 msgid Start monitoring channel \%s\:
 msgstr Inicia el seguiment del canal «%s»:
 
 #: ../xfconf-query/main.c:353 ../xfconf-query/main.c:458
 #: ../xfconf-query/main.c:527
-#, fuzzy
 msgid Failed to set property
-msgstr No s'ha pogut especificar la propietat.\n
+msgstr No s'ha pogut especificar la propietat
 
 #: ../xfconf-query/main.c:357
 msgid --toggle only works with boolean values
-msgstr 
+msgstr --toggle només funciona amb valor booleans
 
 #: ../xfconf-query/main.c:366 ../xfconf-query/main.c:385
 msgid (unknown)
 msgstr (desconegut)
 
 #: ../xfconf-query/main.c:375
-#, fuzzy, c-format
+#, c-format
 msgid Value is an array with %d items:
-msgstr 
-El valor és una matriu de %d elements:\n
-\n
+msgstr El valor és una matriu de %d elements:
 
 #: ../xfconf-query/main.c:399
-#, fuzzy, c-format
+#, c-format
 msgid 
 Property \%s\ does not exist on channel \%s\. If a new property should 
 be created, use the --create option
 msgstr 
-La propietat «%s» no hi és al canal «%s». Si s'ha de crear \n
-una nova propietat, empreu l'opció --create.\n
+La propietat «%s» no hi és al canal «%s». Si s'ha de crear una nova 
+propietat, empreu l'opció --create
 
 #: ../xfconf-query/main.c:407
-#, fuzzy
 msgid When creating a new property, the value type must be specified
-msgstr Quan es crea una nova propietat s'ha d'establir el tipus de valor.\n
+msgstr Quan es crea una nova propietat s'ha d'establir el tipus de valor
 
 #: ../xfconf-query/main.c:417
-#, fuzzy
 msgid Failed to get the existing type for the value
-msgstr No s'ha pogut obtenir el tipus del valor.\n
+msgstr No s'ha pogut obtenir el tipus del valor
 
 #: 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to d08690f01fd932601829f444e801279ca0555203 (commit)
   from 7142b3e8b92ed0f3914d43ebd7a6d7b893ccf796 (commit)

commit d08690f01fd932601829f444e801279ca0555203
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 15:17:09 2011 +0100

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

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

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

 po/ca.po |  249 ++---
 1 files changed, 236 insertions(+), 13 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 90cfef6..51998e4 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,14 +1,14 @@
 # Catalan translations for libxfce package.
 # Copyright (C) 2008 THE libxfce'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the libxfce package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2008-2010.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: libxfce 4ui\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-16 16:03+0100\n
-PO-Revision-Date: 2010-04-11 15:55+0100\n
+POT-Creation-Date: 2010-04-11 10:03+\n
+PO-Revision-Date: 2011-12-18 15:15+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
 Language: \n
@@ -35,32 +35,32 @@ msgstr Error
 msgid Question
 msgstr Pregunta
 
-#: ../libxfce4ui/xfce-sm-client.c:1401
+#: ../libxfce4ui/xfce-sm-client.c:1398
 msgid Session management client ID
 msgstr ID del client de gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1401
+#: ../libxfce4ui/xfce-sm-client.c:1398
 msgid ID
 msgstr ID
 
-#: ../libxfce4ui/xfce-sm-client.c:1402
+#: ../libxfce4ui/xfce-sm-client.c:1399
 msgid Disable session management
 msgstr Deshabilita la gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1412
+#: ../libxfce4ui/xfce-sm-client.c:1409
 msgid Session management options
 msgstr Opcions de gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1413
+#: ../libxfce4ui/xfce-sm-client.c:1410
 msgid Show session management options
 msgstr Mostra les opcions de gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1589
+#: ../libxfce4ui/xfce-sm-client.c:1586
 #, c-format
 msgid Failed to connect to the session manager: %s
 msgstr No es pot connectar al gestor de sessions: %s
 
-#: ../libxfce4ui/xfce-sm-client.c:1596
+#: ../libxfce4ui/xfce-sm-client.c:1593
 #, c-format
 msgid Session manager did not return a valid client id
 msgstr El gestor de sessions no ha tornat una ID vàlida de client
@@ -171,6 +171,232 @@ msgstr Diàleg amb títol
 msgid Xfce 4 Widgets
 msgstr Giny Xfce 4
 
+#~ msgid Version information
+#~ msgstr Informació de la versió
+
+#~ msgid Window Manager
+#~ msgstr Gestor de finestres
+
+#~ msgid Handles the placement of windows on the screen.
+#~ msgstr Gestiona la coŀlocació de les finestres en la pantalla.
+
+#~ msgid Panel
+#~ msgstr Quadre
+
+#~ msgid 
+#~ Program launchers, window buttons, applications menu, workspace switcher 
+#~ and more.
+#~ msgstr 
+#~ Llançadors de programes, finestres de botons, menú d'aplicacions, 
+#~ canviador d'espai de treball i molt més.
+
+#~ msgid Desktop Manager
+#~ msgstr Gestor d'escriptori
+
+#~ msgid 
+#~ Sets the background color or image with optional application menu or 
+#~ icons for minimized applications or launchers, devices and folders.
+#~ msgstr 
+#~ Fixa el color o la imatge de fons i opcionalment, menús d'aplicacions o 
+#~ icones per aplicacions minimitzades o llançadors, dispositius i carpetes.
+
+#~ msgid File Manager 
+#~ msgstr Gestor de fitxers
+
+#~ msgid 
+#~ A modern file manager for the Unix/Linux desktop, aiming to be easy-to-
+#~ use and fast.
+#~ msgstr 
+#~ Un gestor de fitxers modern per escriptoris Unix/Linux, enfocat en la 
+#~ facilitat d'ús i en la velocitat.
+
+#~ msgid Session Manager
+#~ msgstr Gestor de sessió
+
+#~ msgid 
+#~ Restores your session on startup and allows you to shutdown the computer 
+#~ from Xfce.
+#~ msgstr 
+#~ Restaura la vostra sessió a l'inici i us permet apagar l'aparell des de 
+#~ Xfce.
+
+#~ msgid Setting System
+#~ msgstr Sistema de paràmetres
+
+#~ msgid 
+#~ Configuration system to control various aspects of the desktop like 
+#~ appearance, display, keyboard and mouse settings.
+#~ msgstr 
+#~ Sistema de configuració que controla diversos aspectes de la configuració 
+#~ de l'aparença de l'escriptori, la pantalla, el teclat i el ratolí.
+
+#~ msgid Application Finder
+#~ msgstr Cercador d'aplicacions
+
+#~ msgid 
+#~ Shows the applications installed on your system in categories, so you can 
+#~ quickly find and launch them.
+#~ msgstr 
+#~ Mostra les aplicacions instaŀlades en el vostre sistema ordenades per 
+#~ categories, així podeu trobar-les i llançar-les ràpidament.
+
+#~ msgid Settings Daemon
+#~ msgstr Dimoni d'ajustaments
+
+#~ msgid D-Bus-based configuration storage system.
+#~ 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 7bdbdb116b822aa69def8456a115b4d5e683eec6 (commit)
   from d08690f01fd932601829f444e801279ca0555203 (commit)

commit 7bdbdb116b822aa69def8456a115b4d5e683eec6
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 15:21:33 2011 +0100

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

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

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

 po/ca.po |  486 +++---
 1 files changed, 274 insertions(+), 212 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 51998e4..c7ce365 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,7 +7,7 @@ msgid 
 msgstr 
 Project-Id-Version: libxfce 4ui\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2010-04-11 10:03+\n
+POT-Creation-Date: 2011-12-18 13:39+\n
 PO-Revision-Date: 2011-12-18 15:15+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
@@ -19,54 +19,54 @@ msgstr 
 X-Poedit-Language: Catalan\n
 X-Poedit-SourceCharset: utf-8\n
 
-#: ../libxfce4ui/xfce-dialogs.c:69
+#: ../libxfce4ui/xfce-dialogs.c:68
 msgid Information
 msgstr Informació
 
-#: ../libxfce4ui/xfce-dialogs.c:102
+#: ../libxfce4ui/xfce-dialogs.c:101
 msgid Warning
 msgstr Advertència
 
-#: ../libxfce4ui/xfce-dialogs.c:136
+#: ../libxfce4ui/xfce-dialogs.c:135
 msgid Error
 msgstr Error
 
-#: ../libxfce4ui/xfce-dialogs.c:187
+#: ../libxfce4ui/xfce-dialogs.c:186
 msgid Question
 msgstr Pregunta
 
-#: ../libxfce4ui/xfce-sm-client.c:1398
+#: ../libxfce4ui/xfce-sm-client.c:1402
 msgid Session management client ID
 msgstr ID del client de gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1398
+#: ../libxfce4ui/xfce-sm-client.c:1402
 msgid ID
 msgstr ID
 
-#: ../libxfce4ui/xfce-sm-client.c:1399
+#: ../libxfce4ui/xfce-sm-client.c:1403
 msgid Disable session management
 msgstr Deshabilita la gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1409
+#: ../libxfce4ui/xfce-sm-client.c:1413
 msgid Session management options
 msgstr Opcions de gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1410
+#: ../libxfce4ui/xfce-sm-client.c:1414
 msgid Show session management options
 msgstr Mostra les opcions de gestió de sessions
 
-#: ../libxfce4ui/xfce-sm-client.c:1586
+#: ../libxfce4ui/xfce-sm-client.c:1590
 #, c-format
 msgid Failed to connect to the session manager: %s
 msgstr No es pot connectar al gestor de sessions: %s
 
-#: ../libxfce4ui/xfce-sm-client.c:1593
+#: ../libxfce4ui/xfce-sm-client.c:1597
 #, c-format
 msgid Session manager did not return a valid client id
 msgstr El gestor de sessions no ha tornat una ID vàlida de client
 
 #. print warning for user
-#: ../libxfce4ui/xfce-spawn.c:407
+#: ../libxfce4ui/xfce-spawn.c:406
 #, c-format
 msgid 
 Working directory \%s\ does not exist. It won't be used when spawning \%s
@@ -130,32 +130,32 @@ msgstr Conflicte d'accions per a «%s»
 msgid This shortcut is already being used for something else.
 msgstr Ja s'està emprant aquesta acció per alguna altre cosa.
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:207
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:204
 msgid Window Manager Action Shortcut
 msgstr Drecera d'acció del gestor de finestres
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:208
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:218
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:205
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:215
 msgid Action:
 msgstr Acció:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:212
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:209
 msgid Command Shortcut
 msgstr Drecera d'ordre
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:213
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:210
 msgid Command:
 msgstr Ordre:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:217
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:214
 msgid Shortcut
 msgstr Drecera
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:258
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:255
 msgid Shortcut:
 msgstr Drecera:
 
-#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:303
+#: ../libxfce4kbd-private/xfce-shortcut-dialog.c:300
 msgid Could not grab the keyboard.
 msgstr No s'ha pogut capturar el teclat.
 
@@ -171,231 +171,293 @@ msgstr Diàleg amb títol
 msgid Xfce 4 Widgets
 msgstr Giny Xfce 4
 
-#~ msgid Version information
-#~ msgstr Informació de la versió
+#: ../xfce4-about/main.c:52
+msgid Version information
+msgstr Informació de la versió
 
-#~ msgid Window Manager
-#~ msgstr Gestor de finestres
+#: ../xfce4-about/main.c:70
+msgid Window Manager
+msgstr Gestor de finestres
 
-#~ msgid Handles the placement of windows on the screen.
-#~ msgstr Gestiona la coŀlocació de les finestres en la pantalla.
+#: ../xfce4-about/main.c:71
+msgid Handles the placement of windows on the screen.
+msgstr Gestiona la coŀlocació de les finestres en la pantalla.
 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to d34e016a11abc271b96cbfc47f76c885ec39dec2 (commit)
   from a86b47d7b82332982cb2c9f31aa1432aab60540f (commit)

commit d34e016a11abc271b96cbfc47f76c885ec39dec2
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 15:36:21 2011 +0100

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

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

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

 po/ca.po |  110 +++---
 1 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index deb03fd..dbbb45c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,13 +3,13 @@
 # Copyright (C) 2004-2005 Eduard Roccatello.
 # This file is distributed under the same license as the xfce4-appfinder 
package.
 # Pau Rul·lan Ferragut paurul...@bulma.net, 2005, 2006.
-# Carles Muñoz Gorriz carle...@internautas.org, 2008-2009.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2009, 2011.
 msgid 
 msgstr 
 Project-Id-Version: xfce4-appfinder 4.4.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-09-21 20:43+0200\n
-PO-Revision-Date: 2009-11-26 18:01+0100\n
+POT-Creation-Date: 2011-12-18 09:12+\n
+PO-Revision-Date: 2011-12-18 15:35+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
 Language: \n
@@ -22,99 +22,95 @@ msgstr 
 X-Generator: KBabel 1.11.2\n
 
 #: ../src/appfinder-category-model.c:108
-#, fuzzy
 msgid All Applications
-msgstr Aplicacions
+msgstr Totes les aplicacions
 
-#: ../src/appfinder-model.c:422
+#: ../src/appfinder-model.c:438
 msgid Name
-msgstr 
+msgstr Nom
 
-#: ../src/appfinder-model.c:423
+#: ../src/appfinder-model.c:439
 msgid Command
-msgstr 
+msgstr Ordre
 
-#: ../src/appfinder-model.c:424
+#: ../src/appfinder-model.c:440
 msgid Categories
 msgstr Categories
 
-#: ../src/appfinder-model.c:425
-#, fuzzy
+#: ../src/appfinder-model.c:441
 msgid Filename
-msgstr Gestor de fitxers
+msgstr Nom de fitxer
 
-#: ../src/appfinder-model.c:1317
-#, fuzzy
+#: ../src/appfinder-model.c:1598
 msgid Application has no command
-msgstr Cercador d'aplicacions
+msgstr L'aplicació no té cap ordre
 
-#: ../src/appfinder-model.c:1634
+#: ../src/appfinder-model.c:1900
 msgid Commands History
-msgstr 
+msgstr Historial d'ordres
 
 #: ../src/appfinder-preferences.c:175
 msgid C_lear
-msgstr 
+msgstr _Neteja
 
 #: ../src/appfinder-preferences.c:176
 msgid This will permanently clear the custom command history.
-msgstr 
+msgstr Això netejarà l'historia d'ordres personal de forma permanent.
 
 #: ../src/appfinder-preferences.c:177
 msgid Are you sure you want to clear the command history?
-msgstr 
+msgstr Voleu netejar l'historial d'ordres?
 
 #: ../src/appfinder-preferences.c:287
 msgid The custom action will be deleted permanently.
-msgstr 
+msgstr L'acció personalitzada s'esborrarà de forma permanent.
 
 #: ../src/appfinder-preferences.c:288
 #, c-format
 msgid Are you sure you want to delete pattern \%s\?
-msgstr 
+msgstr Voleu esborrar el patró «%s»?
 
-#: ../src/appfinder-window.c:183 ../src/main.c:344
+#: ../src/appfinder-window.c:190 ../src/main.c:344
 #: ../src/appfinder-preferences.glade.h:3
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid Application Finder
 msgstr Cercador d'aplicacions
 
-#: ../src/appfinder-window.c:224
+#: ../src/appfinder-window.c:231
 msgid Toggle view mode
-msgstr 
+msgstr Canvia el mode de vista
 
 #: ../src/main.c:70
 msgid Start in collapsed mode
-msgstr 
+msgstr Inicia en mode reduït
 
 #: ../src/main.c:71
-#, fuzzy
 msgid Print version information and exit
-msgstr Informació de la versió
+msgstr Mostra informació sobre la versió i surt
 
 #: ../src/main.c:72
 msgid Replace the existing service
-msgstr 
+msgstr Substitueix el servei existent
 
 #: ../src/main.c:73
 msgid Quit all instances
-msgstr 
+msgstr Surt de totes les instàncies
 
 #: ../src/main.c:74
 msgid Do not try to use or become a D-Bus service
-msgstr 
+msgstr No intentis emprar o transformar-se en un servei D-Bus
 
 #. close all windows and quit
 #: ../src/main.c:159
 msgid Forced to quit
-msgstr 
+msgstr Força la sortida
 
 #: ../src/main.c:346
 msgid Unable to daemonize the process
-msgstr 
+msgstr No s'ha pogut transformar el procés en un dimoni
 
 #: ../src/main.c:418
-#, fuzzy, c-format
+#, c-format
 msgid Type \%s --help\ for usage.
 msgstr Feu «%s --help» per veure l'ús.
 
@@ -129,35 +125,35 @@ msgstr Envieu els errors a %s.
 
 #: ../src/appfinder-preferences.glade.h:1
 msgid Add a new custom action.
-msgstr 
+msgstr Afegeix una nova acció personalitzada.
 
 #: ../src/appfinder-preferences.glade.h:2
 msgid Always c_enter the window
-msgstr 
+msgstr Sempre _centra la finestra
 
 #: ../src/appfinder-preferences.glade.h:4
 msgid Behaviour
-msgstr 
+msgstr Comportament
 
 #: ../src/appfinder-preferences.glade.h:5
 msgid C_lear Custom Command History
-msgstr 
+msgstr _Neteja l'historial d'ordres 

[Xfce4-commits] xfce4-docs:ristretto-master Update screenshots.

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/ristretto-master
 to 9f44f6b2e9cf440e742277374bcd2ffdd172f68a (commit)
   from ed384ffd28e8d03532494202d748ab0c768d0bc5 (commit)

commit 9f44f6b2e9cf440e742277374bcd2ffdd172f68a
Author: Stephan Arts step...@xfce.org
Date:   Sun Dec 18 11:33:15 2011 +0100

Update screenshots.

 manual/media/preferences-behaviour.png |  Bin 27343 - 42275 bytes
 manual/media/set-wallpaper.png |  Bin 45237 - 34524 bytes
 manual/media/view-images-1.png |  Bin 162435 - 181568 bytes
 3 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/manual/media/preferences-behaviour.png 
b/manual/media/preferences-behaviour.png
index fa7caf8..bd949ca 100644
Binary files a/manual/media/preferences-behaviour.png and 
b/manual/media/preferences-behaviour.png differ
diff --git a/manual/media/set-wallpaper.png b/manual/media/set-wallpaper.png
index 630a0ed..f1e37f6 100644
Binary files a/manual/media/set-wallpaper.png and 
b/manual/media/set-wallpaper.png differ
diff --git a/manual/media/view-images-1.png b/manual/media/view-images-1.png
index 84a6227..72a5ab4 100644
Binary files a/manual/media/view-images-1.png and 
b/manual/media/view-images-1.png differ
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-docs:ristretto-master Revert changes introduced with commit 93cc79c4236dd5a4d667597d7d63ade11fbdd10c

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/ristretto-master
 to ed384ffd28e8d03532494202d748ab0c768d0bc5 (commit)
   from 25dbbd9deca92ac2666ca133ff6d1c6c66e6ebb3 (commit)

commit ed384ffd28e8d03532494202d748ab0c768d0bc5
Author: Stephan Arts step...@xfce.org
Date:   Tue Nov 22 20:00:27 2011 +0100

Revert changes introduced with commit 
93cc79c4236dd5a4d667597d7d63ade11fbdd10c

 manual/po/ristretto.pot |   28 +---
 1 files changed, 13 insertions(+), 15 deletions(-)

diff --git a/manual/po/ristretto.pot b/manual/po/ristretto.pot
index c514e88..0d6816a 100644
--- a/manual/po/ristretto.pot
+++ b/manual/po/ristretto.pot
@@ -1,10 +1,10 @@
 msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
-POT-Creation-Date: 2011-11-03 12:50+0100\n
-PO-Revision-Date: 2011-11-22 19:52+0100\n
-Last-Translator: Stephan Arts step...@xfce.org\n
-Language-Team: Dutch (Flemish)\n
+POT-Creation-Date: 2011-11-22 19:59+0100\n
+PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
+Last-Translator: FULL NAME EMAIL@ADDRESS\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
@@ -15,37 +15,35 @@ msgstr 
 
 #: preferences.page:8(desc)
 msgid placeholder-1/ Preferences
-msgstr placeholder-1/ Voorkeuren
+msgstr 
 
 #: preferences.page:10(name) index.page:11(name) getting-started.page:11(name)
 msgid Stephan Arts
-msgstr Stephan Arts
+msgstr 
 
 #: preferences.page:11(email) index.page:12(email) 
getting-started.page:12(email)
 msgid step...@xfce.org
-msgstr step...@xfce.org
+msgstr 
 
 #: preferences.page:14(p) index.page:15(p) getting-started.page:15(p)
 msgid Creative Commons Share Alike 3.0
-msgstr Creative Commons Share Alike 3.0
+msgstr 
 
 #: preferences.page:18(title) getting-started.page:130(gui)
 msgid Preferences
-msgstr Voorkeuren
+msgstr 
 
 #: preferences.page:20(app) preferences.page:27(app) preferences.page:52(app) 
preferences.page:62(app) preferences.page:82(app) preferences.page:97(app) 
preferences.page:119(app) preferences.page:125(app) preferences.page:139(app) 
preferences.page:146(app) preferences.page:149(app) index.page:8(title) 
index.page:9(title) index.page:19(title) getting-started.page:48(app) 
getting-started.page:79(app) getting-started.page:93(app) 
getting-started.page:98(app) getting-started.page:109(app)
 msgid Ristretto
-msgstr Ristretto
+msgstr 
 
 #: preferences.page:21(gui) preferences.page:24(title) 
getting-started.page:138(gui)
 msgid Preferences Dialog
-msgstr Voorkeuren Dialoogvenster
+msgstr 
 
 #: preferences.page:19(p)
 msgid The behaviour and looks of placeholder-1/ can be modified, mostly 
through options displayed in the placeholder-2/.
-msgstr Het gedrag en de weergave van placeholder-1/ kan worden
-aangepast. Voornamelijk via de opties die worden weergegeven in
-het placeholder-2/.
+msgstr 
 
 #: preferences.page:25(p)
 msgid The Preferences dialog allows a user to configure different aspects of 
placeholder-1/. These options are grouped under the following tabs.
@@ -53,7 +51,7 @@ msgstr 
 
 #: preferences.page:31(title) preferences.page:35(title)
 msgid Display preferences
-msgstr Weergave voorkeuren
+msgstr 
 
 #: preferences.page:39(title)
 msgid Override background color
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] transd:master l10n: Initial catalan translation for postler.

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 339c52c40023e321a50944a8bcca2ef71ac54e30 (commit)
   from 7bfa2395bde162c4a4aee7cb6a7657a910ae347d (commit)

commit 339c52c40023e321a50944a8bcca2ef71ac54e30
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 16:22:51 2011 +0100

l10n: Initial catalan translation for postler.

New status: 73 messages complete with 0 fuzzies and 194 untranslated.

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

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

diff --git a/po/ca.po b/po/ca.po
new file mode 100644
index 000..752e97a
--- /dev/null
+++ b/po/ca.po
@@ -0,0 +1,1161 @@
+# Catalan translations for postler package
+# Traduccions al català del paquet «postler».
+# Copyright (C) 2011 THE postler'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the
+# postler package.
+# Carles Muñoz Gorriz carle...@internautas.org, 2011.
+#
+msgid 
+msgstr 
+Project-Id-Version: postler\n
+Report-Msgid-Bugs-To: \n
+POT-Creation-Date: 2011-12-18 14:15+\n
+PO-Revision-Date: 2011-12-18 16:21+0100\n
+Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
+Language-Team: Catalan\n
+Language: ca\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-Poedit-Language: Catalan\n
+X-Poedit-SourceCharset: utf-8\n
+
+#: ../data/postler.desktop.in.h:1
+msgid Lean mail interface
+msgstr 
+
+#: ../data/postler.desktop.in.h:2
+msgid Mail reader
+msgstr Lector de correu
+
+#: ../data/postler.desktop.in.h:3 ../postler/postler-reader.vala:44
+#: ../postler/postler-service.vala:305
+msgid Postler
+msgstr Postler
+
+#: ../postler/postler-accounts.vala:73 ../postler/postler-accounts.vala:207
+#: ../postler/postler-bureau.vala:960 ../postler/postler-service.vala:372
+#: ../postler/postler-service.vala:379
+msgid Inbox
+msgstr Bústia d'entrada
+
+#: ../postler/postler-accounts.vala:74
+msgid Sent
+msgstr Enviat
+
+#: ../postler/postler-accounts.vala:75
+msgid Drafts
+msgstr Esborranys
+
+#: ../postler/postler-accounts.vala:76
+msgid Outbox
+msgstr Bústia de sortida
+
+#: ../postler/postler-accounts.vala:77
+msgid Trash
+msgstr Paperera
+
+#: ../postler/postler-accounts.vala:78
+msgid Archive
+msgstr Arxiu
+
+#. i18n: Junk, unsolicited bulk mail, spam
+#: ../postler/postler-accounts.vala:80
+msgid Junk
+msgstr Brossa
+
+#: ../postler/postler-accounts.vala:176
+msgid Failed to find a root certificate file.
+msgstr 
+
+#: ../postler/postler-accounts.vala:212
+msgid Config folder couldn't be created.
+msgstr 
+
+#: ../postler/postler-accounts.vala:325
+#, c-format
+msgid Failed to remove \%s\
+msgstr 
+
+#: ../postler/postler-accounts.vala:402
+#, c-format
+msgid Invalid type \%s\
+msgstr 
+
+#. i18n: File was found but can't contains invalid values
+#: ../postler/postler-accounts.vala:406
+#, c-format
+msgid Failed to parse account in \%s\: %s
+msgstr 
+
+#: ../postler/postler-accounts.vala:451
+msgid Cache folder couldn't be created.
+msgstr 
+
+#: ../postler/postler-accounts.vala:462 ../postler/postler-accounts.vala:605
+#: ../postler/postler-accounts.vala:623 ../postler/postler-accounts.vala:643
+#, c-format
+msgid Account \%s\ can't receive mail.
+msgstr 
+
+#: ../postler/postler-accounts.vala:626 ../postler/postler-accounts.vala:646
+msgid Mail folder couldn't be created.
+msgstr 
+
+#: ../postler/postler-accountsetup.vala:64
+msgid _Header:
+msgstr _Capçalera:
+
+#: ../postler/postler-accountsetup.vala:67
+msgid _Keywords:
+msgstr _Paraules clau:
+
+#: ../postler/postler-accountsetup.vala:77
+msgid Firstname Lastname
+msgstr Nom Cognom
+
+#: ../postler/postler-accountsetup.vala:80
+msgid _Full Name:
+msgstr Nom _sencer:
+
+#: ../postler/postler-accountsetup.vala:81
+msgid em...@example.com
+msgstr em...@example.com
+
+#: ../postler/postler-accountsetup.vala:85
+msgid _Email Address:
+msgstr _Adreça de correu:
+
+#: ../postler/postler-accountsetup.vala:86
+msgid Password
+msgstr Contrasenya
+
+#: ../postler/postler-accountsetup.vala:90
+msgid _Password:
+msgstr Contrasen_ya:
+
+#: ../postler/postler-accountsetup.vala:91
+msgid Optional, Inc.
+msgstr Optional, Inc.
+
+#: ../postler/postler-accountsetup.vala:94
+msgid _Organization:
+msgstr _Organització:
+
+#: ../postler/postler-accountsetup.vala:99
+msgid _Signature:
+msgstr _Signatura:
+
+#: ../postler/postler-accountsetup.vala:101
+msgid Insert -- to render part of the signature gray.
+msgstr Inseriu «-- » per mostrar part de la signatura en gris.
+
+#: ../postler/postler-accountsetup.vala:104
+msgid _Advanced
+msgstr _Avançat
+
+#: ../postler/postler-accountsetup.vala:109
+msgid imap.example.com
+msgstr imap.example.com
+
+#: ../postler/postler-accountsetup.vala:110
+msgid POP3 is not supported.
+msgstr 
+
+#: ../postler/postler-accountsetup.vala:129
+msgid _Receiving Server:
+msgstr 
+
+#: 

[Xfce4-commits] xfmpc:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to f3b5e1331f06791f9671ef722955e1886fc697bb (commit)
   from 2bd97d95e44006ab51cd9bcf2d2ab8e652cd8a39 (commit)

commit f3b5e1331f06791f9671ef722955e1886fc697bb
Author: Michal Várady miko.v...@gmail.com
Date:   Sun Dec 18 16:23:39 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |   57 +
 1 files changed, 29 insertions(+), 28 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 39f6e2b..219a0b2 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,14 +1,14 @@
 # Czech translations for xfce-i package.
 # Copyright (C) 2008 THE xfce-i'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce-i package.
-# Michal Várady miko.v...@gmail.com, 2008-2009.
+# Michal Várady miko.v...@gmail.com, 2008-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfce-i 18n\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2011-10-23 17:29+0200\n
-PO-Revision-Date: 2009-12-04 14:20+0100\n
+PO-Revision-Date: 2011-12-18 16:23+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech\n
 Language: \n
@@ -21,7 +21,8 @@ msgstr 
 msgid Replace
 msgstr Nahradit
 
-#: ../src/dbbrowser.c:1524 ../src/playlist.c:1511
+#: ../src/dbbrowser.c:1524
+#: ../src/playlist.c:1511
 msgid Browse
 msgstr Procházet
 
@@ -35,17 +36,18 @@ msgstr Náhodně
 
 #: ../src/extended-interface.c:515
 msgid Single Mode
-msgstr 
+msgstr Jednoduchý režim
 
 #: ../src/extended-interface.c:525
 msgid Consume Mode
-msgstr 
+msgstr Spotřební režim
 
 #: ../src/extended-interface.c:548
 msgid _Shortcuts
-msgstr 
+msgstr _Klávesové zkratky
 
-#: ../src/extended-interface.c:747 ../xfmpc.desktop.in.h:2
+#: ../src/extended-interface.c:747
+#: ../xfmpc.desktop.in.h:2
 msgid MPD client written in GTK+ for Xfce
 msgstr Klient MPD napsaný v GTK+ pro prostředí Xfce
 
@@ -82,7 +84,8 @@ msgstr od \%s\ z alba \%s\ (%s)
 msgid Stopped
 msgstr Zastaveno
 
-#: ../src/interface.c:496 ../src/interface.c:916
+#: ../src/interface.c:496
+#: ../src/interface.c:916
 msgid Not connected
 msgstr Nepřipojeno
 
@@ -104,7 +107,9 @@ msgstr Připojení k démonu MPD se nezdařilo
 msgid Connected to MPD
 msgstr Připojeno k démonu MPD
 
-#: ../src/mpdclient.c:627 ../src/mpdclient.c:657 ../src/mpdclient.c:672
+#: ../src/mpdclient.c:627
+#: ../src/mpdclient.c:657
+#: ../src/mpdclient.c:672
 msgid n/a
 msgstr n/a
 
@@ -114,7 +119,7 @@ msgstr Předvolby aplikace Xfmpc
 
 #: ../src/preferences-dialog.c:703
 msgid Customize your MPD client
-msgstr 
+msgstr Přizpůsobte si klienta MPD
 
 #: ../src/preferences-dialog.c:720
 msgid MPD
@@ -129,13 +134,8 @@ msgid Use _default system settings
 msgstr Použít _výchozí nastavení systému
 
 #: ../src/preferences-dialog.c:745
-msgid 
-If checked, Xfmpc will try to read the environment variables MPD_HOST and 
-MPD_PORT otherwise it will use localhost
-msgstr 
-Pokud je volba zaškrtnuta, pokusí se aplikace Xfmpc přečíst proměnné 
-prostředí MPD_HOST a MPD_PORT, v opačném případě použije tento počítač 
-(localhost)
+msgid If checked, Xfmpc will try to read the environment variables MPD_HOST 
and MPD_PORT otherwise it will use localhost
+msgstr Pokud je volba zaškrtnuta, pokusí se aplikace Xfmpc přečíst proměnné 
prostředí MPD_HOST a MPD_PORT, v opačném případě použije tento počítač 
(localhost)
 
 #: ../src/preferences-dialog.c:775
 msgid Hostname:
@@ -155,11 +155,11 @@ msgstr Vzhled
 
 #: ../src/preferences-dialog.c:884
 msgid General
-msgstr 
+msgstr Obecné
 
 #: ../src/preferences-dialog.c:893
 msgid Close window into notification area
-msgstr 
+msgstr Zavřít okno do oznamovací oblasti
 
 #: ../src/preferences-dialog.c:908
 msgid Show _stastusbar
@@ -173,7 +173,8 @@ msgstr Formát skladby
 msgid Song Format:
 msgstr Formát skladby:
 
-#: ../src/preferences-dialog.c:956 ../src/song-dialog.c:291
+#: ../src/preferences-dialog.c:956
+#: ../src/song-dialog.c:291
 msgid Title
 msgstr Název
 
@@ -248,35 +249,35 @@ msgstr %T: Stopa
 
 #: ../src/shortcuts-dialog.c:161
 msgid Xfmpc Shortcuts
-msgstr 
+msgstr Klávesové zkratky Xfmpc
 
 #: ../src/shortcuts-dialog.c:163
 msgid Control your MPD client with your keyboard
-msgstr 
+msgstr Ovládejte klienta MPD pomocí klávesnice
 
 #: ../src/shortcuts-dialog.c:178
 msgid Quit: CTRL+q
-msgstr 
+msgstr Ukončit: CTRL+q
 
 #: ../src/shortcuts-dialog.c:187
 msgid Previous: CTRL+b
-msgstr 
+msgstr Předchozí: CTRL+b
 
 #: ../src/shortcuts-dialog.c:197
 msgid Play/Pause: CTRL+p
-msgstr 
+msgstr Přehrát/pozastavit: CTRL+p
 
 #: ../src/shortcuts-dialog.c:207
 msgid Stop: CTRL+s
-msgstr 
+msgstr Zastavit: CTRL+s
 
 #: ../src/shortcuts-dialog.c:217
 msgid Next: CTRL+f
-msgstr 
+msgstr Další: CTRL+f
 
 #: ../src/shortcuts-dialog.c:227
 msgid Volume: CTRL+v
-msgstr 
+msgstr Hlasitost: CTRL+v
 
 #: ../src/song-dialog.c:239
 msgid File

[Xfce4-commits] postler:master l10n: Initial Catalan translation for postler.

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to a61e7c4b785f0576242365510a664d6274f44268 (commit)
   from 6324c880277aa569c8532b0fa1eb8e30fcf13e2a (commit)

commit a61e7c4b785f0576242365510a664d6274f44268
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 16:23:47 2011 +0100

l10n: Initial Catalan translation for postler.

New status: 73 messages complete with 0 fuzzies and 194 untranslated.

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

 po/{tr.po = ca.po} |  250 +-
 1 files changed, 125 insertions(+), 125 deletions(-)

diff --git a/po/tr.po b/po/ca.po
similarity index 89%
copy from po/tr.po
copy to po/ca.po
index 0b355cc..752e97a 100644
--- a/po/tr.po
+++ b/po/ca.po
@@ -1,31 +1,33 @@
-# Turkish translations for PACKAGE package
-# PACKAGE paketi için Türkçe çeviriler.
-# Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# Alper Tekinalp alper.tekin...@gmail.com, 2011.
-# 
+# Catalan translations for postler package
+# Traduccions al català del paquet «postler».
+# Copyright (C) 2011 THE postler'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the
+# postler package.
+# Carles Muñoz Gorriz carle...@internautas.org, 2011.
+#
 msgid 
 msgstr 
-Project-Id-Version: PACKAGE VERSION\n
+Project-Id-Version: postler\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-09-25 22:21+\n
-PO-Revision-Date: 2011-09-16 00:09+0300\n
-Last-Translator: Alper Tekinalp alper.tekin...@gmail.com\n
-Language-Team: Turkish\n
+POT-Creation-Date: 2011-12-18 14:15+\n
+PO-Revision-Date: 2011-12-18 16:21+0100\n
+Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
+Language-Team: Catalan\n
+Language: ca\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: tr\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Poedit-Language: Catalan\n
+X-Poedit-SourceCharset: utf-8\n
 
 #: ../data/postler.desktop.in.h:1
-#, fuzzy
 msgid Lean mail interface
-msgstr Yalın posta arayüzü
+msgstr 
 
 #: ../data/postler.desktop.in.h:2
 msgid Mail reader
-msgstr Posta okuyucu
+msgstr Lector de correu
 
 #: ../data/postler.desktop.in.h:3 ../postler/postler-reader.vala:44
 #: ../postler/postler-service.vala:305
@@ -36,33 +38,32 @@ msgstr Postler
 #: ../postler/postler-bureau.vala:960 ../postler/postler-service.vala:372
 #: ../postler/postler-service.vala:379
 msgid Inbox
-msgstr Gelen Kutusu
+msgstr Bústia d'entrada
 
 #: ../postler/postler-accounts.vala:74
 msgid Sent
-msgstr Gönderilmiş
+msgstr Enviat
 
 #: ../postler/postler-accounts.vala:75
 msgid Drafts
-msgstr Taslaklar
+msgstr Esborranys
 
 #: ../postler/postler-accounts.vala:76
 msgid Outbox
-msgstr Giden Kutusu
+msgstr Bústia de sortida
 
 #: ../postler/postler-accounts.vala:77
 msgid Trash
-msgstr Çöp
+msgstr Paperera
 
 #: ../postler/postler-accounts.vala:78
 msgid Archive
-msgstr Arşiv
+msgstr Arxiu
 
 #. i18n: Junk, unsolicited bulk mail, spam
 #: ../postler/postler-accounts.vala:80
-#, fuzzy
 msgid Junk
-msgstr Ivır zıvır
+msgstr Brossa
 
 #: ../postler/postler-accounts.vala:176
 msgid Failed to find a root certificate file.
@@ -70,12 +71,12 @@ msgstr 
 
 #: ../postler/postler-accounts.vala:212
 msgid Config folder couldn't be created.
-msgstr Ayar dizini oluşturulamadı.
+msgstr 
 
 #: ../postler/postler-accounts.vala:325
 #, c-format
 msgid Failed to remove \%s\
-msgstr \%s\ kaldırılamadı
+msgstr 
 
 #: ../postler/postler-accounts.vala:402
 #, c-format
@@ -100,23 +101,23 @@ msgstr 
 
 #: ../postler/postler-accounts.vala:626 ../postler/postler-accounts.vala:646
 msgid Mail folder couldn't be created.
-msgstr Posta klasörü oluşturulamadı.
+msgstr 
 
 #: ../postler/postler-accountsetup.vala:64
 msgid _Header:
-msgstr 
+msgstr _Capçalera:
 
 #: ../postler/postler-accountsetup.vala:67
 msgid _Keywords:
-msgstr 
+msgstr _Paraules clau:
 
 #: ../postler/postler-accountsetup.vala:77
 msgid Firstname Lastname
-msgstr Ad Soyad
+msgstr Nom Cognom
 
 #: ../postler/postler-accountsetup.vala:80
 msgid _Full Name:
-msgstr 
+msgstr Nom _sencer:
 
 #: ../postler/postler-accountsetup.vala:81
 msgid em...@example.com
@@ -124,35 +125,35 @@ msgstr em...@example.com
 
 #: ../postler/postler-accountsetup.vala:85
 msgid _Email Address:
-msgstr 
+msgstr _Adreça de correu:
 
 #: ../postler/postler-accountsetup.vala:86
 msgid Password
-msgstr Parola
+msgstr Contrasenya
 
 #: ../postler/postler-accountsetup.vala:90
 msgid _Password:
-msgstr 
+msgstr Contrasen_ya:
 
 #: ../postler/postler-accountsetup.vala:91
 msgid Optional, Inc.
-msgstr 
+msgstr Optional, Inc.
 
 #: ../postler/postler-accountsetup.vala:94
 msgid _Organization:
-msgstr 
+msgstr _Organització:
 
 #: ../postler/postler-accountsetup.vala:99
 msgid _Signature:
-msgstr 
+msgstr _Signatura:
 
 #: ../postler/postler-accountsetup.vala:101
 msgid Insert -- to render part of the signature gray.

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 47cf2463fdbe229f1f9f1dcabdc91f9a26fbcb3e (commit)
   from 339c52c40023e321a50944a8bcca2ef71ac54e30 (commit)

commit 47cf2463fdbe229f1f9f1dcabdc91f9a26fbcb3e
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 16:29:10 2011 +0100

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

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

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

 po/ca.po | 1236 +-
 1 files changed, 169 insertions(+), 1067 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 752e97a..7e70c98 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,16 +1,16 @@
-# Catalan translations for postler package
-# Traduccions al català del paquet «postler».
-# Copyright (C) 2011 THE postler'S COPYRIGHT HOLDER
+# Catalan translations for transd package
+# Traduccions al català del paquet «transd».
+# Copyright (C) 2011 THE transd'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the
-# postler package.
+# transd package.
 # Carles Muñoz Gorriz carle...@internautas.org, 2011.
 #
 msgid 
 msgstr 
-Project-Id-Version: postler\n
+Project-Id-Version: transd\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-18 14:15+\n
-PO-Revision-Date: 2011-12-18 16:21+0100\n
+POT-Creation-Date: 2011-12-18 15:03+\n
+PO-Revision-Date: 2011-12-18 16:28+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
 Language: ca\n
@@ -21,1141 +21,243 @@ msgstr 
 X-Poedit-Language: Catalan\n
 X-Poedit-SourceCharset: utf-8\n
 
-#: ../data/postler.desktop.in.h:1
-msgid Lean mail interface
-msgstr 
-
-#: ../data/postler.desktop.in.h:2
-msgid Mail reader
-msgstr Lector de correu
-
-#: ../data/postler.desktop.in.h:3 ../postler/postler-reader.vala:44
-#: ../postler/postler-service.vala:305
-msgid Postler
-msgstr Postler
-
-#: ../postler/postler-accounts.vala:73 ../postler/postler-accounts.vala:207
-#: ../postler/postler-bureau.vala:960 ../postler/postler-service.vala:372
-#: ../postler/postler-service.vala:379
-msgid Inbox
-msgstr Bústia d'entrada
-
-#: ../postler/postler-accounts.vala:74
-msgid Sent
-msgstr Enviat
-
-#: ../postler/postler-accounts.vala:75
-msgid Drafts
-msgstr Esborranys
-
-#: ../postler/postler-accounts.vala:76
-msgid Outbox
-msgstr Bústia de sortida
-
-#: ../postler/postler-accounts.vala:77
-msgid Trash
-msgstr Paperera
-
-#: ../postler/postler-accounts.vala:78
-msgid Archive
-msgstr Arxiu
-
-#. i18n: Junk, unsolicited bulk mail, spam
-#: ../postler/postler-accounts.vala:80
-msgid Junk
-msgstr Brossa
-
-#: ../postler/postler-accounts.vala:176
-msgid Failed to find a root certificate file.
-msgstr 
-
-#: ../postler/postler-accounts.vala:212
-msgid Config folder couldn't be created.
-msgstr 
-
-#: ../postler/postler-accounts.vala:325
-#, c-format
-msgid Failed to remove \%s\
-msgstr 
-
-#: ../postler/postler-accounts.vala:402
-#, c-format
-msgid Invalid type \%s\
-msgstr 
-
-#. i18n: File was found but can't contains invalid values
-#: ../postler/postler-accounts.vala:406
-#, c-format
-msgid Failed to parse account in \%s\: %s
-msgstr 
-
-#: ../postler/postler-accounts.vala:451
-msgid Cache folder couldn't be created.
-msgstr 
-
-#: ../postler/postler-accounts.vala:462 ../postler/postler-accounts.vala:605
-#: ../postler/postler-accounts.vala:623 ../postler/postler-accounts.vala:643
-#, c-format
-msgid Account \%s\ can't receive mail.
-msgstr 
-
-#: ../postler/postler-accounts.vala:626 ../postler/postler-accounts.vala:646
-msgid Mail folder couldn't be created.
-msgstr 
-
-#: ../postler/postler-accountsetup.vala:64
-msgid _Header:
-msgstr _Capçalera:
-
-#: ../postler/postler-accountsetup.vala:67
-msgid _Keywords:
-msgstr _Paraules clau:
-
-#: ../postler/postler-accountsetup.vala:77
-msgid Firstname Lastname
-msgstr Nom Cognom
-
-#: ../postler/postler-accountsetup.vala:80
-msgid _Full Name:
-msgstr Nom _sencer:
-
-#: ../postler/postler-accountsetup.vala:81
-msgid em...@example.com
-msgstr em...@example.com
-
-#: ../postler/postler-accountsetup.vala:85
-msgid _Email Address:
-msgstr _Adreça de correu:
-
-#: ../postler/postler-accountsetup.vala:86
-msgid Password
-msgstr Contrasenya
-
-#: ../postler/postler-accountsetup.vala:90
-msgid _Password:
-msgstr Contrasen_ya:
-
-#: ../postler/postler-accountsetup.vala:91
-msgid Optional, Inc.
-msgstr Optional, Inc.
-
-#: ../postler/postler-accountsetup.vala:94
-msgid _Organization:
-msgstr _Organització:
-
-#: ../postler/postler-accountsetup.vala:99
-msgid _Signature:
-msgstr _Signatura:
-
-#: ../postler/postler-accountsetup.vala:101
-msgid Insert -- to render part of the signature gray.
-msgstr Inseriu «-- » per mostrar part de la signatura en gris.
-
-#: ../postler/postler-accountsetup.vala:104
-msgid _Advanced
-msgstr _Avançat
-
-#: ../postler/postler-accountsetup.vala:109
-msgid imap.example.com
-msgstr imap.example.com
-
-#: 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to eac387a74ca29cb448c192290f365c6c9d221498 (commit)
   from edff776698caed15192d20ab2801daf47e42424e (commit)

commit eac387a74ca29cb448c192290f365c6c9d221498
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 16:44:04 2011 +0100

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

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

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

 po/ca.po |   26 +++---
 1 files changed, 19 insertions(+), 7 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 99ba7c9..6e3080d 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@
 # Copyright (C) 2003-2006 The Xfce development team.
 # This file is distributed under the same license as the orage package.
 #
-# Carles Muñoz Gorriz carle...@internuatas.org, 2003-2004, 2006,
+# Carles Muñoz Gorriz carle...@internuatas.org, 2003-2004, 2006, 2010-2011.
 # 2008-2010.
 # Pau Rul·lan Ferragut paurul...@bulma.net 2005, 2006.
 #
@@ -12,13 +12,13 @@ msgstr 
 Project-Id-Version: orage 4.3.90.2\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2011-12-05 12:38+0200\n
-PO-Revision-Date: 2010-01-03 22:22+0100\n
+PO-Revision-Date: 2011-12-18 16:41+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
+Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 X-Poedit-Language: Catalan\n
 X-Poedit-SourceCharset: utf-8\n
@@ -943,6 +943,14 @@ msgid 
 \tST appointment start time\n
 \tET appointment end time
 msgstr 
+Cal que entreu tots els caràcters alterats. Aquest\n
+text és només per l'intèrpret. Les següents ordres\n
+especials es substitueixen en temps d'execució:\n
+\tT  títol de la cita\n
+\tD  descripció de la cita\n
+\tAT hora de l'alarma\n
+\tST inici de la cita\n
+\tET final de la cita
 
 #: ../src/appointment.c:3091
 msgid Test this alarm by raising it now
@@ -982,7 +990,7 @@ msgstr Anualment
 
 #: ../src/appointment.c:3173
 msgid Hourly
-msgstr 
+msgstr Cada hora
 
 #: ../src/appointment.c:3175
 msgid Mon
@@ -1726,7 +1734,7 @@ msgstr --remove-foreign (-r) file \ttreu un fitxer 
forà\n
 msgid 
 --export (-e) file [appointment...] \texport appointments from Orage to 
 file\n
-msgstr 
+msgstr --export (-e) fitxer [cita…] \texporta cites d'Orage a un fitxer\n
 
 #: ../src/main.c:316
 #, c-format
@@ -1793,7 +1801,7 @@ msgid Never
 msgstr Mai
 
 #: ../src/mainbox.c:450 ../src/mainbox.c:457
-#, fuzzy, c-format
+#, c-format
 msgid 
 Title: %s\n
  Location: %s\n
@@ -1803,6 +1811,7 @@ msgid 
 %s
 msgstr 
 Títol: %s\n
+ Localització: %s\n
  Inici:\t%s\n
  Fi:\t%s\n
  Nota:\n
@@ -1989,13 +1998,16 @@ msgstr 
 
 #: ../src/parameters.c:910 ../src/parameters.c:915
 msgid Use wakeup timer
-msgstr 
+msgstr Empra el rellotge despertador
 
 #: ../src/parameters.c:921
 msgid 
 Use this timer if Orage has problems waking up properly after suspend or 
 hibernate. (For example tray icon not refreshed or alarms not firing.)
 msgstr 
+Empreu aquest rellotge si Orage té problemes arrancant després de suspendre 
+o hibernar. (Per exemple, la icona de la safata de missatges no es 
+refresquen o no sonen les alarmes.)
 
 #: ../src/parameters.c:938
 msgid Orage Preferences
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 6fe86eeea23a9ba23e9699ed578557ff783a0ee7 (commit)
   from 49423fc7c500f64e188ea9660114b3062987c09f (commit)

commit 6fe86eeea23a9ba23e9699ed578557ff783a0ee7
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 17:18:21 2011 +0100

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

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

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

 po/ca.po |  127 +-
 1 files changed, 59 insertions(+), 68 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index ed59e7b..406823d 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,17 +1,19 @@
 # Catalan translations for ristretto package
 # 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-2010.
+# This file is distributed under the same license as the
+# ristretto package.
+# Carles Muñoz Gorriz carle...@internautas.org, 2008-2011.
 # Harald Servat redcr...@gmail.com, 2009.
+# Pol Ruzafa kiar...@gmail.com, 2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: ristretto\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
-PO-Revision-Date: 2011-08-11 17:29+0100\n
-Last-Translator: Pol Ruzafa kiar...@gmail.com\n
+POT-Creation-Date: 2011-12-18 14:18+\n
+PO-Revision-Date: 2011-12-18 17:17+0100\n
+Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan xfce-i...@xfce.org\n
 Language: ca\n
 MIME-Version: 1.0\n
@@ -34,10 +36,10 @@ msgstr Inicia una seqüència d'imatges
 
 #: ../src/main.c:77
 msgid Show settings dialog
-msgstr 
+msgstr Mostra el diàleg d'ajustaments
 
 #: ../src/main.c:105
-#, fuzzy, c-format
+#, c-format
 msgid 
 %s: %s\n
 \n
@@ -45,8 +47,9 @@ msgid 
 available command line options.\n
 msgstr 
 %s: %s\n
-Feu %s --help per veure la llista complerta d'opcions disponibles \n
-de la línia d'ordres.\n
+\n
+Feu %s --help per veure la llista completa \n
+d'opcions disponibles de la línia d'ordres.\n
 
 #: ../src/main_window.c:55 ../ristretto.desktop.in.h:1
 msgid Image Viewer
@@ -75,11 +78,11 @@ msgstr Desa una còpia de la imatge
 
 #: ../src/main_window.c:278
 msgid _Properties
-msgstr 
+msgstr _Propietats
 
 #: ../src/main_window.c:278
 msgid Show file properties
-msgstr 
+msgstr Mostra les propietats del fitxer
 
 #: ../src/main_window.c:279
 msgid _Close
@@ -133,19 +136,18 @@ msgstr _Mostra
 
 #: ../src/main_window.c:290
 msgid _Fullscreen
-msgstr _Pantalla sencera
+msgstr _Pantalla completa
 
 #: ../src/main_window.c:291
 msgid _Leave Fullscreen
-msgstr _Surt de la pantalla sencera
+msgstr _Surt de la pantalla completa
 
 #: ../src/main_window.c:292
 msgid _Set as Wallpaper
-msgstr Posa com a _fons d'escriptori
+msgstr Posa com _fons d'escriptori
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
 msgstr _Zoom
 
@@ -226,14 +228,13 @@ msgid _Position
 msgstr _Posició
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
-msgstr Miniatures
+msgstr _Posició de la barra de miniatures
 
 #. Misc
 #: ../src/main_window.c:325
 msgid Leave _Fullscreen
-msgstr Surt de la _pantalla sencera
+msgstr Surt de la _pantalla completa
 
 #. Toggle visibility of the main file toolbar
 #: ../src/main_window.c:333
@@ -247,7 +248,6 @@ msgstr Mostra la barra de _navegació
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
 msgstr Mostra la _barra de miniatures
 
@@ -313,7 +313,7 @@ msgstr Buit
 
 #: ../src/main_window.c:1831
 msgid Choose 'set wallpaper' method
-msgstr 
+msgstr Trieu el mètode «Posa com fons d'escriptori»
 
 #: ../src/main_window.c:1846 ../src/preferences_dialog.c:349
 msgid 
@@ -321,27 +321,29 @@ msgid 
 This setting determines the method iRistretto/i will use\n
 to configure the desktop wallpaper.
 msgstr 
+Configureu quin sistema gestiona el vostre escriptori.\n
+Aquest paràmetre determina quin mètode emprarà iRistretto/i\n
+per configurar el fons de l'escriptori.
 
 #: ../src/main_window.c:1871 ../src/preferences_dialog.c:373
 msgid None
-msgstr 
+msgstr Cap
 
 #: ../src/main_window.c:1875 ../src/preferences_dialog.c:377
 msgid Xfce
-msgstr 
+msgstr Xfce
 
 #: ../src/main_window.c:1879 ../src/preferences_dialog.c:381
 msgid GNOME
-msgstr 
+msgstr GNOME
 
 #: ../src/main_window.c:2381
 msgid Developer:
 msgstr Autor:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
-msgstr Ristretto és visor d'imatges per l'entorn d'escriptori Xfce.
+msgstr Ristretto és un visor d'imatges per l'entorn d'escriptori Xfce.
 
 #: ../src/main_window.c:2398
 msgid translator-credits
@@ -370,9 +372,8 @@ msgid Save copy
 msgstr Desa una còpia
 
 #: ../src/main_window.c:2889
-#, 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 79ee94c067966bca6023506722030305c3631159 (commit)
   from c9a52f29b1cf4e0c675aa401fd11b849cda59d18 (commit)

commit 79ee94c067966bca6023506722030305c3631159
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 17:24:22 2011 +0100

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

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

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

 po/ca.po |  256 ++---
 1 files changed, 159 insertions(+), 97 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index ee3cb44..4236154 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,21 +2,21 @@
 # Traduccions al català del paquet «Gigolo».
 # Copyright (C) 2008-2010 Enrico Tröger
 # This file is distributed under the same license as the Gigolo package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2009.
+# Carles Muñoz Gorriz carle...@internautas.org, 2009, 2011.
 # Harald Servat redcr...@gmail.com, 2009-2010.
-# 
+#
 msgid 
 msgstr 
 Project-Id-Version: gigolo 0.2.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-13 05:05+\n
-PO-Revision-Date: 2010-01-05 12:05+0100\n
-Last-Translator: Harald Servat redcr...@gmail.com\n
+POT-Creation-Date: 2011-12-18 13:33+\n
+PO-Revision-Date: 2011-12-18 17:23+0100\n
+Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Catalan\n
+Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../src/main.c:46
@@ -71,7 +71,7 @@ msgstr WebDAV
 msgid WebDAV (secure)
 msgstr WebDAV (segur)
 
-#: ../src/common.c:93 ../src/window.c:1395
+#: ../src/common.c:93 ../src/window.c:1506
 msgid Network
 msgstr Xarxa
 
@@ -87,163 +87,190 @@ msgstr Fotos
 msgid Custom Location
 msgstr Ubicació personalitzada
 
-#: ../src/window.c:261
+#: ../src/window.c:262
 #, c-format
 msgid Connecting to \%s\
 msgstr S'està connectant a «%s»
 
-#: ../src/window.c:429
-msgid A simple frontend to easily connect/mount to local and remote 
filesystems
-msgstr Una interfície simple per connectar i muntar sistemes de fitxers 
remots
-
 #: ../src/window.c:430
+msgid 
+A simple frontend to easily connect/mount to local and remote filesystems
+msgstr 
+Una interfície simple per connectar i muntar sistemes de fitxers remots
+
+#: ../src/window.c:431
 msgid Copyright 2008-2011 Enrico Tröger
 msgstr Copyright 2008-2011 Enrico Tröger
 
-#: ../src/window.c:433
+#: ../src/window.c:434
 msgid translator-credits
 msgstr 
 Carles Muñoz Gorriz carle...@internautas.org, 2009.\n
 Harald Servat redcr...@gmail.com, 2009-2010.
 
-#: ../src/window.c:465
+#: ../src/window.c:466
 msgid Gigolo can use the following protocols provided by GVfs:
 msgstr Gigolo pot emprar els següents protocols mitjançant GVfs:
 
-#: ../src/window.c:562
+#: ../src/window.c:579 ../src/window.c:638
 #, c-format
 msgid The command '%s' failed
 msgstr Ha fallat la comanda '%s' .
 
-#: ../src/window.c:563 ../src/window.c:700 ../src/bookmarkeditdialog.c:220
+#: ../src/window.c:580 ../src/window.c:613 ../src/window.c:626
+#: ../src/window.c:639 ../src/window.c:797 ../src/bookmarkeditdialog.c:220
 #: ../src/bookmarkeditdialog.c:239 ../src/bookmarkeditdialog.c:252
 #: ../src/bookmarkeditdialog.c:263 ../src/bookmarkeditdialog.c:274
 msgid Error
 msgstr Error
 
 #: ../src/window.c:613
+msgid Invalid terminal command
+msgstr Ordre de terminal errònia
+
+#: ../src/window.c:625
+#, c-format
+msgid No default location available for \%s\
+msgstr No hi ha cal lloc disponible per «%s»
+
+#: ../src/window.c:705
 msgid Edit _Bookmark
 msgstr Edita _lloc d'interès
 
-#: ../src/window.c:615 ../src/window.c:1189 ../src/browsenetworkpanel.c:453
+#: ../src/window.c:707 ../src/window.c:1287 ../src/browsenetworkpanel.c:453
 #: ../src/browsenetworkpanel.c:497
 msgid Create _Bookmark
 msgstr Crea un _lloc d'interès
 
-#: ../src/window.c:1181
+#: ../src/window.c:1279
 msgid _File
 msgstr _Fitxer
 
-#: ../src/window.c:1182
+#: ../src/window.c:1280
 msgid _Edit
 msgstr _Edita
 
-#: ../src/window.c:1183
+#: ../src/window.c:1281
 msgid _Actions
 msgstr _Accions
 
-#: ../src/window.c:1184
+#: ../src/window.c:1282
 msgid _View
 msgstr _Mostra
 
-#: ../src/window.c:1185
+#: ../src/window.c:1283
 msgid _Help
 msgstr A_juda
 
-#: ../src/window.c:1191
+#: ../src/window.c:1289
 msgid _Edit Bookmarks
 msgstr _Edita llocs d'interès
 
-#: ../src/window.c:1192
+#: ../src/window.c:1290
 msgid Open the bookmark manager to add, edit or delete bookmarks
-msgstr Obre el gestor de llocs d'interès per afegir, editar o esborrar-ne 
llocs
+msgstr 
+Obre el gestor de llocs d'interès per afegir, editar o esborrar-ne llocs
 
-#: ../src/window.c:1196
+#: ../src/window.c:1294
 msgid Disconnect the selected resource
 msgstr Desconnecta el recurs seleccionat
 
-#: ../src/window.c:1198
+#: 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 513f7b45e38ca8971a64d63ac0bd0dab921213c7 (commit)
   from e48b2309ce04806af0050894d6fca0f0e9ee15d2 (commit)

commit 513f7b45e38ca8971a64d63ac0bd0dab921213c7
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 17:37:14 2011 +0100

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

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

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

 po/ca.po |  525 +++---
 1 files changed, 365 insertions(+), 160 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 05c342d..a6557cb 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,14 +8,15 @@ msgid 
 msgstr 
 Project-Id-Version: thunar-svn-plugin\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-03-20 12:20+0100\n
+POT-Creation-Date: 2011-12-18 14:48+\n
 PO-Revision-Date: \n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: Harald Servat redcr...@gmail.com\n
-Language: \n
+Language: ca\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-Poedit-Language: Catalan\n
 X-Poedit-Country: Spain\n
 
@@ -25,9 +26,12 @@ msgid Menu|Add
 msgstr Afegeix
 
 #: ../thunar-vcs-plugin/tvp-git-action.c:263
-#: ../thunar-vcs-plugin/tvp-svn-action.c:300 ../tvp-git-helper/main.c:153
-#: ../tvp-git-helper/tgh-add.c:108 ../tvp-git-helper/tgh-add.c:121
-#: ../tvp-svn-helper/main.c:251 ../tvp-svn-helper/tsh-add.c:118
+#: ../thunar-vcs-plugin/tvp-svn-action.c:300
+#: ../tvp-git-helper/main.c:153
+#: ../tvp-git-helper/tgh-add.c:108
+#: ../tvp-git-helper/tgh-add.c:121
+#: ../tvp-svn-helper/main.c:251
+#: ../tvp-svn-helper/tsh-add.c:118
 #: ../tvp-svn-helper/tsh-add.c:131
 msgid Add
 msgstr Afegir
@@ -46,9 +50,12 @@ msgid Menu|Blame
 msgstr Culpa
 
 #: ../thunar-vcs-plugin/tvp-git-action.c:266
-#: ../thunar-vcs-plugin/tvp-svn-action.c:305 ../tvp-git-helper/main.c:157
-#: ../tvp-git-helper/tgh-blame-dialog.c:129 ../tvp-svn-helper/main.c:255
-#: ../tvp-svn-helper/main.c:259 ../tvp-svn-helper/tsh-blame-dialog.c:132
+#: ../thunar-vcs-plugin/tvp-svn-action.c:305
+#: ../tvp-git-helper/main.c:157
+#: ../tvp-git-helper/tgh-blame-dialog.c:129
+#: ../tvp-svn-helper/main.c:255
+#: ../tvp-svn-helper/main.c:259
+#: ../tvp-svn-helper/tsh-blame-dialog.c:132
 msgid Blame
 msgstr Culpar
 
@@ -56,7 +63,8 @@ msgstr Culpar
 msgid Menu|Branch
 msgstr Branca
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:268 ../tvp-git-helper/main.c:161
+#: ../thunar-vcs-plugin/tvp-git-action.c:268
+#: ../tvp-git-helper/main.c:161
 #: ../tvp-git-helper/tgh-branch-dialog.c:144
 #: ../tvp-git-helper/tgh-stash-dialog.c:167
 msgid Branch
@@ -68,8 +76,10 @@ msgid Menu|Checkout
 msgstr Obté
 
 #: ../thunar-vcs-plugin/tvp-git-action.c:269
-#: ../thunar-vcs-plugin/tvp-svn-action.c:322 ../tvp-svn-helper/main.c:263
-#: ../tvp-svn-helper/tsh-checkout.c:100 ../tvp-svn-helper/tsh-checkout.c:112
+#: ../thunar-vcs-plugin/tvp-svn-action.c:322
+#: ../tvp-svn-helper/main.c:263
+#: ../tvp-svn-helper/tsh-checkout.c:100
+#: ../tvp-svn-helper/tsh-checkout.c:112
 msgid Checkout
 msgstr Obtenir
 
@@ -77,8 +87,10 @@ msgstr Obtenir
 msgid Menu|Clean
 msgstr Neteja
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:270 ../tvp-git-helper/main.c:165
-#: ../tvp-git-helper/tgh-clean.c:152 ../tvp-git-helper/tgh-clean-dialog.c:96
+#: ../thunar-vcs-plugin/tvp-git-action.c:270
+#: ../tvp-git-helper/main.c:165
+#: ../tvp-git-helper/tgh-clean.c:152
+#: ../tvp-git-helper/tgh-clean-dialog.c:96
 msgid Clean
 msgstr Netejar
 
@@ -86,7 +98,8 @@ msgstr Netejar
 msgid Menu|Clone
 msgstr Clona
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:272 ../tvp-git-helper/main.c:169
+#: ../thunar-vcs-plugin/tvp-git-action.c:272
+#: ../tvp-git-helper/main.c:169
 #: ../tvp-git-helper/tgh-clone.c:115
 msgid Clone
 msgstr Clonar
@@ -98,8 +111,10 @@ msgstr Publica
 
 #: ../thunar-vcs-plugin/tvp-git-action.c:273
 #: ../thunar-vcs-plugin/tvp-svn-action.c:332
-#: ../tvp-git-helper/tgh-log-dialog.c:153 ../tvp-svn-helper/main.c:271
-#: ../tvp-svn-helper/tsh-commit.c:225 ../tvp-svn-helper/tsh-commit.c:238
+#: ../tvp-git-helper/tgh-log-dialog.c:153
+#: ../tvp-svn-helper/main.c:271
+#: ../tvp-svn-helper/tsh-commit.c:240
+#: ../tvp-svn-helper/tsh-commit.c:253
 msgid Commit
 msgstr Publicar
 
@@ -143,19 +158,21 @@ msgid Menu|Log
 msgstr Registre
 
 #: ../thunar-vcs-plugin/tvp-git-action.c:278
-#: ../thunar-vcs-plugin/tvp-svn-action.c:377 ../tvp-git-helper/main.c:173
-#: ../tvp-git-helper/tgh-log-dialog.c:243 ../tvp-svn-helper/main.c:295
+#: ../thunar-vcs-plugin/tvp-svn-action.c:377
+#: ../tvp-git-helper/main.c:173
+#: ../tvp-git-helper/tgh-log-dialog.c:243
+#: ../tvp-svn-helper/main.c:295
 #: ../tvp-svn-helper/tsh-log-dialog.c:225
 msgid Log
 msgstr Registre
 
 #: ../thunar-vcs-plugin/tvp-git-action.c:279
 msgid Menu|Merge
-msgstr Mescla (merge)
+msgstr Fusina (merge)
 
 #: 

[Xfce4-commits] thunar-media-tags-plugin:master l10n: Updated Catalan (Valencian) (ca) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 8cd53499f392ed464420cddac14452b1bda0bdb4 (commit)
   from cc48a3ee6cccbafaf684b23bad87944f1dd5d295 (commit)

commit 8cd53499f392ed464420cddac14452b1bda0bdb4
Author: Carles Muñoz Gorriz carle...@internautas.org
Date:   Sun Dec 18 17:41:57 2011 +0100

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

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

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

 po/ca.po |  155 ++---
 1 files changed, 96 insertions(+), 59 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index b36a99f..156d10c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,22 +1,27 @@
 # Catalan translation of the thunar-media-tags-plugin.
 # Copyright (C) 2006-2007 Jannis Pohlmann jan...@xfce.org
-# This file is distributed under the same license as the 
thunar-media-tags-plugin package.
-# Carles Muñoz Gorriz carle...@internautas.org, 2006, 2008-2009.
+# This file is distributed under the same license as the
+# thunar-media-tags-plugin package.
+# Carles Muñoz Gorriz carle...@internautas.org, 2006, 2008-2009, 2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: thunar-media-tags-plugin 0.1.2svn\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2006-09-11 11:38+0200\n
-PO-Revision-Date: 2009-02-01 12:07+0100\n
+POT-Creation-Date: 2011-12-18 14:42+\n
+PO-Revision-Date: 2011-12-18 17:41+0100\n
 Last-Translator: Carles Muñoz Gorriz carle...@internautas.org\n
 Language-Team: catalan xfce-i...@xfce.org\n
+Language: \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-Poedit-Language: ca\n
+X-Poedit-SourceCharset: utf-8\n
 
 #: ../thunar-plugin/tag-renamer.c:59
+#: ../thunar-plugin/tag-renamer.c:657
 msgid Title
 msgstr Títol
 
@@ -44,190 +49,222 @@ msgstr Pista. Artista - Títol
 msgid Artist - Track - Title
 msgstr Artista - Pista - Títol
 
+#: ../thunar-plugin/tag-renamer.c:67
+msgid Custom
+msgstr Personalitzat
+
+#. Custom format
+#: ../thunar-plugin/tag-renamer.c:243
+msgid Cust_om format:
+msgstr Format _personalitzat:
+
 #. Format label
-#: ../thunar-plugin/tag-renamer.c:223
+#: ../thunar-plugin/tag-renamer.c:271
 msgid _Format:
 msgstr _Format:
 
-#: ../thunar-plugin/tag-renamer.c:246
+#: ../thunar-plugin/tag-renamer.c:312
 msgid _Underscores
 msgstr _Subratllat
 
-#: ../thunar-plugin/tag-renamer.c:248
-msgid 
-Activating this option will replace all spaces in the target filename with 
-underscores.
-msgstr 
-Si s'activa aquesta opció es substituiran tots els espais del nom del fitxer 
-per caràcters de subratllat.
+#: ../thunar-plugin/tag-renamer.c:314
+msgid Activating this option will replace all spaces in the target filename 
with underscores.
+msgstr Si s'activa aquesta opció es substituiran tots els espais del nom del 
fitxer per caràcters de subratllat.
 
-#: ../thunar-plugin/tag-renamer.c:253
+#: ../thunar-plugin/tag-renamer.c:319
 msgid _Lowercase
 msgstr _Minúscula
 
-#: ../thunar-plugin/tag-renamer.c:255
-msgid 
-If you activate this, the resulting filename will only contain lowercase 
-letters.
+#: ../thunar-plugin/tag-renamer.c:321
+msgid If you activate this, the resulting filename will only contain 
lowercase letters.
 msgstr Si s'activa el no de fitxer només tindrà caràcters en minúscula.
 
-#: ../thunar-plugin/tag-renamer.c:264 ../thunar-plugin/tag-renamer.c:702
-#: ../thunar-plugin/audio-tags-page.c:183
+#: ../thunar-plugin/tag-renamer.c:464
+#: ../thunar-plugin/audio-tags-page.c:182
 msgid Unknown Artist
 msgstr Artista desconegut
 
-#: ../thunar-plugin/tag-renamer.c:265 ../thunar-plugin/tag-renamer.c:750
-#: ../thunar-plugin/audio-tags-page.c:209
+#: ../thunar-plugin/tag-renamer.c:472
+#: ../thunar-plugin/audio-tags-page.c:208
 msgid Unknown Title
 msgstr Títol desconegut
 
 #. Edit tags action
-#: ../thunar-plugin/tag-renamer.c:523
+#: ../thunar-plugin/tag-renamer.c:627
 msgid Edit _Tags
 msgstr _Edita les etiquetes
 
-#: ../thunar-plugin/tag-renamer.c:523
+#: ../thunar-plugin/tag-renamer.c:627
 msgid Edit ID3/OGG tags of this file.
 msgstr Edita les etiquetes ID3/OGG d'aquest fitxer.
 
-#: ../thunar-plugin/tag-renamer.c:545
+#: ../thunar-plugin/tag-renamer.c:646
+msgid Tag Help
+msgstr Ajuda en les etiquetes
+
+#: ../thunar-plugin/tag-renamer.c:657
+msgid Artist
+msgstr Artista
+
+#: ../thunar-plugin/tag-renamer.c:658
+msgid Album
+msgstr Àlbum
+
+#: ../thunar-plugin/tag-renamer.c:658
+msgid Genre
+msgstr Gènere
+
+#: ../thunar-plugin/tag-renamer.c:659
+msgid Track number
+msgstr Número de pista
+
+#: ../thunar-plugin/tag-renamer.c:659
+msgid Year
+msgstr Any
+
+#: ../thunar-plugin/tag-renamer.c:660
+msgid Comment
+msgstr Comentari
+
+#: ../thunar-plugin/tag-renamer.c:717
 msgid Audio Tags
 msgstr Etiquetes d'àudio
 
-#: ../thunar-plugin/audio-tags-page.c:196
+#: ../thunar-plugin/audio-tags-page.c:195
 msgid Unknown Album
 msgstr Àlbum 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to daa75c38a0c8dc1ad41c37222a469859bb40ec9e (commit)
   from 6fe86eeea23a9ba23e9699ed578557ff783a0ee7 (commit)

commit daa75c38a0c8dc1ad41c37222a469859bb40ec9e
Author: Pjotr Anon pliniusmi...@gmail.com
Date:   Sun Dec 18 19:27:43 2011 +0100

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

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

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

 po/nl.po |   21 +
 1 files changed, 5 insertions(+), 16 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 6723f2c..226231d 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,19 +3,19 @@
 # This file is distributed under the same license as the ristretto package.
 # Stephan Arts step...@xfce.org, 2007.
 # Pjotr, 2011.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: ristretto\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2011-12-18 08:43+0100\n
+POT-Creation-Date: 2011-12-18 14:18+\n
 PO-Revision-Date: 2011-09-08 00:48+0200\n
 Last-Translator: Pjotr\n
 Language-Team: Dutch (Flemish)\n
-Language: nl (Dutch)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: nl (Dutch)\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../src/main.c:61
@@ -142,7 +142,6 @@ msgstr In_stellen als bureaubladachtergrond
 
 #. Zoom submenu
 #: ../src/main_window.c:294
-#, fuzzy
 msgid _Zoom
 msgstr _Zoomen
 
@@ -223,7 +222,6 @@ msgid _Position
 msgstr _Positie
 
 #: ../src/main_window.c:323
-#, fuzzy
 msgid Thumbnail Bar _Position
 msgstr Positie van miniaturenbalk
 
@@ -244,9 +242,8 @@ msgstr Toon _navigatiewerkbalk
 
 #. Toggle visibility of the thumbnailbar
 #: ../src/main_window.c:337
-#, fuzzy
 msgid Show _Thumbnail Bar
-msgstr Toon _miniaturenbalk
+msgstr Miniaturenbalk tonen
 
 #. Sort by Filename
 #: ../src/main_window.c:344
@@ -339,7 +336,6 @@ msgid Developer:
 msgstr Ontwikkelaar:
 
 #: ../src/main_window.c:2390
-#, fuzzy
 msgid Ristretto is an image viewer for the Xfce desktop environment.
 msgstr Ristretto is een afbeeldingkijker voor de Xfce-werkomgeving.
 
@@ -380,7 +376,6 @@ msgid Are you sure you want to delete image '%s' from 
disk?
 msgstr Weet u zeker dat u afbeelding '%s' van de schijf wil verwijderen?
 
 #: ../src/privacy_dialog.c:151
-#, fuzzy
 msgid Time range to clear:
 msgstr Te wissen tijdvak:
 
@@ -437,7 +432,6 @@ msgid Thumbnails
 msgstr Miniaturen
 
 #: ../src/preferences_dialog.c:228
-#, fuzzy
 msgid 
 The thumbnail bar can be automatically hidden \n
 when the window is fullscreen.
@@ -446,7 +440,6 @@ msgstr 
 wanneer de afbeeldingkijker in schermvullende modus is.
 
 #: ../src/preferences_dialog.c:230
-#, fuzzy
 msgid Hide thumbnail bar when fullscreen
 msgstr Miniaturenbalk verbergen bij schermvullende modus
 
@@ -471,14 +464,12 @@ msgid Control
 msgstr Control
 
 #: ../src/preferences_dialog.c:293
-#, fuzzy
 msgid Scroll wheel
 msgstr Bladerwieltje
 
 #: ../src/preferences_dialog.c:296
-#, fuzzy
 msgid Invert zoom direction
-msgstr Draai zoomrichting om
+msgstr Zoomrichting omdraaien
 
 #: ../src/preferences_dialog.c:306
 msgid Behaviour
@@ -562,7 +553,6 @@ msgid border width
 msgstr randbreedte
 
 #: ../src/thumbnail_bar.c:216
-#, fuzzy
 msgid the border width of the thumbnail bar
 msgstr de randbreedte van de miniaturenbalk
 
@@ -607,7 +597,6 @@ msgid Zoomed
 msgstr Ingezoomd
 
 #: ../ristretto.desktop.in.h:2
-#, fuzzy
 msgid Look at your images easily
 msgstr Kijk gemakkelijk naar uw afbeeldingen
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Selection-box drawn outside of image because box_width 0.0, return instead of drawing selection

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/master
 to d3680c14335f023a19efd20edac22044d600191f (commit)
   from 2c76535a89c4a6fde0ba43031eaabdcefbbe1d22 (commit)

commit d3680c14335f023a19efd20edac22044d600191f
Author: Eric Koegel eric.koe...@gmail.com
Date:   Sun Dec 18 21:05:51 2011 +0300

Selection-box drawn outside of image because box_width  0.0, return 
instead of drawing selection

Signed-off-by: Stephan Arts step...@xfce.org

 src/image_viewer.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/image_viewer.c b/src/image_viewer.c
index 3e77271..6c7a6da 100644
--- a/src/image_viewer.c
+++ b/src/image_viewer.c
@@ -1189,11 +1189,11 @@ paint_selection_box (
  */
 if (box_width  0.0)
 {
-box_width = 0.0;
+return;
 }
 if (box_height  0.0)
 {
-box_height = 0.0;
+return;
 }
 
 cairo_rectangle (
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] ristretto:master Add some comments

2011-12-18 Thread Stephan Arts
Updating branch refs/heads/master
 to 11c2f046189cbf11869cf2467701d94109dd4b8e (commit)
   from c0bedba5401662cbebfd4108014fcc95e0972029 (commit)

commit 11c2f046189cbf11869cf2467701d94109dd4b8e
Author: Stephan Arts step...@xfce.org
Date:   Sun Dec 18 22:18:11 2011 +0100

Add some comments

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

diff --git a/src/image_viewer.c b/src/image_viewer.c
index 6c7a6da..b7f5611 100644
--- a/src/image_viewer.c
+++ b/src/image_viewer.c
@@ -1189,10 +1189,13 @@ paint_selection_box (
  */
 if (box_width  0.0)
 {
+/* Return, do not draw the box.  */
 return;
 }
+/* Same as above, for the vertical dimensions this time */
 if (box_height  0.0)
 {
+/* Return, do not draw the box.  */
 return;
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 0299c45af834ab07cbe3e43602bb86c7ef021198 (commit)
   from 92b991feba570b59b9aa0306b55ab98e9339a73e (commit)

commit 0299c45af834ab07cbe3e43602bb86c7ef021198
Author: Olexandr ol...@ukr.net
Date:   Sun Dec 18 23:26:02 2011 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

 po/uk.po |   88 +++--
 1 files changed, 45 insertions(+), 43 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 3fa9943..203a102 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-panel 4.7.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-10-27 16:07+\n
+POT-Creation-Date: 2011-12-18 16:36+\n
 PO-Revision-Date: 2009-01-26 15:54+0200\n
 Last-Translator: Dmitry Nikitin luckas...@mail.ru\n
 Language-Team: Ukrainian xfce4-...@xfce.org\n
@@ -16,8 +16,8 @@ msgstr 
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Language: uk\n
-Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n
 X-Generator: KBabel 1.11.4\n
+Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n
 
 #: ../panel-desktop-handler.desktop.in.h:1
 msgid 
@@ -35,7 +35,7 @@ msgstr Упорядкувати панель
 
 #: ../panel-preferences.desktop.in.h:2
 #: ../panel/panel-preferences-dialog.glade.h:26 ../panel/panel-window.c:2275
-#: ../migrate/main.c:107
+#: ../migrate/main.c:117
 msgid Panel
 msgstr Панель
 
@@ -169,11 +169,11 @@ msgstr Перезапустити...
 
 #: ../panel/main.c:393
 msgid Failed to show the preferences dialog
-msgstr Не вдалось відобразити діалог налаштування
+msgstr Не вдалось показати діалог налаштування
 
 #: ../panel/main.c:395
 msgid Failed to show the add new items dialog
-msgstr Не вдалось відобразити діалог додавання нових елементів
+msgstr Не вдалось показати діалог додавання нових елементів
 
 #: ../panel/main.c:397
 msgid Failed to save the panel configuration
@@ -327,7 +327,7 @@ msgstr Екран %d
 #: ../panel/panel-preferences-dialog.c:505
 #, c-format
 msgid Monitor %d
-msgstr Менітор %d
+msgstr Монітор %d
 
 #: ../panel/panel-preferences-dialog.c:836
 msgid The panel and plugin configurations will be permanently removed
@@ -591,7 +591,7 @@ msgstr _Нова гра
 
 #: ../panel/panel-tic-tac-toe.c:134
 msgid _Level:
-msgstr _Рівень
+msgstr _Рівень:
 
 #: ../panel/panel-tic-tac-toe.c:140
 msgid Novice
@@ -609,11 +609,11 @@ msgstr Досвідчений
 msgid Expert
 msgstr Експерт
 
-#: ../migrate/main.c:101
+#: ../migrate/main.c:116
 msgid Welcome to the first start of the panel
 msgstr Запрошуємо до першого старту панелі
 
-#: ../migrate/main.c:103
+#: ../migrate/main.c:125
 msgid 
 Because the panel moved to a new system for storing the settings, it has to 
 load a fresh initial configuration.
@@ -621,51 +621,51 @@ msgstr 
 Через переміщення панелі на нову систему збереження властивостей, вона 
 завантажує свіжу початкову конфігурацію.
 
-#: ../migrate/main.c:106
+#: ../migrate/main.c:127 ../migrate/main.c:136
 msgid Choose below which setup you want for the first startup.
 msgstr Виберіть нижче, з яким налаштуванням Ви хочете розпочати перший старт.
 
-#: ../migrate/main.c:112
+#: ../migrate/main.c:129
 msgid Migrate old config
 msgstr Міграція старої конфігурації
 
-#: ../migrate/main.c:113
+#: ../migrate/main.c:130
 msgid Migrate the old 4.6 configuration to Xfconf
 msgstr Міграція старої конфігурації 4.6 на Xfconf
 
-#: ../migrate/main.c:118
+#: ../migrate/main.c:141
 msgid Use default config
 msgstr Використовувати типову конфігурацію
 
-#: ../migrate/main.c:119
+#: ../migrate/main.c:142
 msgid Load the default configuration
 msgstr Завантажити типову конфігурацію
 
-#: ../migrate/main.c:124
+#: ../migrate/main.c:148
 msgid One empty panel
 msgstr Одна порожня панель
 
-#: ../migrate/main.c:125
+#: ../migrate/main.c:149
 msgid Start with one empty panel
 msgstr Стартувати з однією порожньою панеллю
 
-#: ../migrate/main.c:138
+#: ../migrate/main.c:160
 msgid Failed to migrate the old panel configuration
 msgstr Не вдалось провести міграцію старої конфігурації панелі
 
-#: ../migrate/main.c:151
+#: ../migrate/main.c:172
 msgid Failed to load the default configuration
 msgstr Не вдалось завантажити типову конфігурацію
 
-#: ../migrate/main.c:163
+#: ../migrate/main.c:185
 msgid Panel config needs migration...
 msgstr Потрібно провести міграцію конфігурації панелі...
 
-#: ../migrate/main.c:167
+#: ../migrate/main.c:189
 msgid Failed to migrate the existing configuration
 msgstr Не вдалось провести міграцію старої конфігурації панелі
 
-#: ../migrate/main.c:173
+#: ../migrate/main.c:195
 msgid Panel configuration has been updated.
 msgstr Конфігурацію панелі оновлено.
 
@@ -693,7 +693,9 @@ msgstr Меню сеансу
 #: 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/xfce-4.8
 to 9ef7259e8239694c4432e8d6903e057854bdd9ec (commit)
   from 0eff77ba32c9e0403b17719090bb4febf3a54560 (commit)

commit 9ef7259e8239694c4432e8d6903e057854bdd9ec
Author: Olexandr ol...@ukr.net
Date:   Sun Dec 18 23:42:45 2011 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

 po/uk.po |   58 +-
 1 files changed, 29 insertions(+), 29 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 3e7324d..b399c2f 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-panel 4.7.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-14 21:09+\n
+POT-Creation-Date: 2011-12-18 16:39+\n
 PO-Revision-Date: 2009-01-26 15:54+0200\n
 Last-Translator: Dmitry Nikitin luckas...@mail.ru\n
 Language-Team: Ukrainian xfce4-...@xfce.org\n
@@ -169,11 +169,11 @@ msgstr Перезапустити...
 
 #: ../panel/main.c:393
 msgid Failed to show the preferences dialog
-msgstr Не вдалось відобразити діалог налаштування
+msgstr Не вдалось показати діалог налаштування
 
 #: ../panel/main.c:395
 msgid Failed to show the add new items dialog
-msgstr Не вдалось відобразити діалог додавання нових елементів
+msgstr Не вдалось показати діалог додавання нових елементів
 
 #: ../panel/main.c:397
 msgid Failed to save the panel configuration
@@ -327,7 +327,7 @@ msgstr Екран %d
 #: ../panel/panel-preferences-dialog.c:498
 #, c-format
 msgid Monitor %d
-msgstr Менітор %d
+msgstr Монітор %d
 
 #: ../panel/panel-preferences-dialog.c:828
 msgid The panel and plugin configurations will be permanently removed
@@ -571,7 +571,7 @@ msgstr _Нова гра
 
 #: ../panel/panel-tic-tac-toe.c:134
 msgid _Level:
-msgstr _Рівень
+msgstr _Рівень:
 
 #: ../panel/panel-tic-tac-toe.c:140
 msgid Novice
@@ -656,7 +656,7 @@ msgstr _Друга кнопка:
 
 #: ../plugins/actions/actions.c:108
 msgid Disabled
-msgstr Вимкнуто
+msgstr Вимкнено
 
 #: ../plugins/actions/actions.c:109
 msgid Log Out Dialog
@@ -738,7 +738,7 @@ msgstr 
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:9
 msgid Show application d_escription in tooltip
-msgstr Показувати опис програми _у спливаючих
+msgstr Показувати опис програми _у підказках
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:10
 msgid Show generic application n_ames
@@ -746,7 +746,7 @@ msgstr Показувати загальні н_азви програм
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:11
 msgid Show ic_ons in menu
-msgstr Відображати значк_и в меню
+msgstr Показувати значк_и в меню
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:12
 msgid Use c_ustom menu file:
@@ -858,7 +858,7 @@ msgstr Цифровий
 
 #: ../plugins/clock/clock-dialog.glade.h:8
 msgid Display _seconds
-msgstr Відображати _секунди
+msgstr Показувати _секунди
 
 #: ../plugins/clock/clock-dialog.glade.h:9
 msgid F_ormat:
@@ -872,7 +872,7 @@ msgstr Прибли_зність:
 
 #: ../plugins/clock/clock-dialog.glade.h:12
 msgid Fl_ash time separators
-msgstr Б_лимаючі розділювачі часу 
+msgstr Б_лимаючий розділювач часу 
 
 #: ../plugins/clock/clock-dialog.glade.h:13
 msgid Fuzzy
@@ -889,7 +889,7 @@ msgstr По_казувати AM/PM
 #: ../plugins/clock/clock-dialog.glade.h:16
 #: ../plugins/systray/systray-dialog.glade.h:5
 msgid Show _frame
-msgstr Відображати _рамку
+msgstr Показувати _рамку
 
 #: ../plugins/clock/clock-dialog.glade.h:17
 msgid Show _inactive dots
@@ -897,7 +897,7 @@ msgstr Показати _неактивні крапки
 
 #: ../plugins/clock/clock-dialog.glade.h:18
 msgid Show gri_d
-msgstr _Відображати розділювач
+msgstr Показувати розділю_вач
 
 #: ../plugins/clock/clock-dialog.glade.h:20
 #, no-c-format
@@ -953,7 +953,7 @@ msgstr Вечір
 
 #: ../plugins/clock/clock-fuzzy.c:93
 msgid Late evening
-msgstr Пізньо ввечері
+msgstr Пізно ввечері
 
 #. I18N: %0 will be replaced with the preceding hour, %1 with
 #. * the comming hour
@@ -965,7 +965,7 @@ msgstr %0 година
 #: ../plugins/clock/clock-fuzzy.c:101
 #, no-c-format
 msgid five past %0
-msgstr п’ять по %0
+msgstr п'ять по %0
 
 #: ../plugins/clock/clock-fuzzy.c:102
 #, no-c-format
@@ -985,7 +985,7 @@ msgstr двадцять по %0
 #: ../plugins/clock/clock-fuzzy.c:105
 #, no-c-format
 msgid twenty five past %0
-msgstr двадцять п’ять по %0
+msgstr двадцять п'ять по %0
 
 #: ../plugins/clock/clock-fuzzy.c:106
 #, no-c-format
@@ -995,7 +995,7 @@ msgstr пів години по %0
 #: ../plugins/clock/clock-fuzzy.c:107
 #, no-c-format
 msgid twenty five to %1
-msgstr без двадцяти п’яти %1
+msgstr без двадцяти п'яти %1
 
 #: ../plugins/clock/clock-fuzzy.c:108
 #, no-c-format
@@ -1005,7 +1005,7 @@ msgstr без двадцяти %1
 #: ../plugins/clock/clock-fuzzy.c:109
 #, no-c-format
 msgid quarter to %1
-msgstr без п’ятнадцяти %1
+msgstr без п'ятнадцяти %1
 
 #: ../plugins/clock/clock-fuzzy.c:110
 #, no-c-format
@@ -1015,7 +1015,7 @@ msgstr 

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

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 50e20a11036a99f39d47d76087386fb7f75558aa (commit)
   from 0299c45af834ab07cbe3e43602bb86c7ef021198 (commit)

commit 50e20a11036a99f39d47d76087386fb7f75558aa
Author: Olexandr ol...@ukr.net
Date:   Sun Dec 18 23:51:55 2011 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index 203a102..a4d030d 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-panel 4.7.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-12-18 16:36+\n
+POT-Creation-Date: 2011-12-18 22:42+\n
 PO-Revision-Date: 2009-01-26 15:54+0200\n
 Last-Translator: Dmitry Nikitin luckas...@mail.ru\n
 Language-Team: Ukrainian xfce4-...@xfce.org\n
@@ -16,8 +16,8 @@ msgstr 
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
 Language: uk\n
-X-Generator: KBabel 1.11.4\n
 Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
n%10=4  (n%10010 || n%100=20) ? 1 : 2);\n
+X-Generator: KBabel 1.11.4\n
 
 #: ../panel-desktop-handler.desktop.in.h:1
 msgid 
@@ -885,7 +885,7 @@ msgstr 
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:9
 msgid Show application d_escription in tooltip
-msgstr Показувати опис програми _у спливаючих
+msgstr Показувати опис програми _у підказках
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:10
 msgid Show generic application n_ames
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] postler:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to cc828fd905d16a1de723627674be72349d253c83 (commit)
   from a61e7c4b785f0576242365510a664d6274f44268 (commit)

commit cc828fd905d16a1de723627674be72349d253c83
Author: Michal Várady miko.v...@gmail.com
Date:   Mon Dec 19 00:02:24 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |   78 +++--
 1 files changed, 40 insertions(+), 38 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 3228c83..b657e3c 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -2,15 +2,17 @@
 # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # David Štancl dsta...@dstancl.cz, 2011.
+# Michal Várady miko.v...@gmail.com, 2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-09-15 10:21+\n
-PO-Revision-Date: 2011-09-16 19:55+0100\n
-Last-Translator: David Štancl dsta...@dstancl.cz\n
+POT-Creation-Date: 2011-12-18 14:15+\n
+PO-Revision-Date: 2011-12-19 00:02+0100\n
+Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: cs cz...@li.org\n
+Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -87,7 +89,7 @@ msgstr Nesprávný typ \%s\
 #: ../postler/postler-accounts.vala:406
 #, c-format
 msgid Failed to parse account in \%s\: %s
-msgstr 
+msgstr Zpracování účtu v\%s\ se nezdařilo: %s
 
 #: ../postler/postler-accounts.vala:451
 msgid Cache folder couldn't be created.
@@ -140,7 +142,7 @@ msgstr _Heslo:
 
 #: ../postler/postler-accountsetup.vala:91
 msgid Optional, Inc.
-msgstr 
+msgstr Optional, Inc.
 
 #: ../postler/postler-accountsetup.vala:94
 msgid _Organization:
@@ -152,7 +154,7 @@ msgstr _Podpis:
 
 #: ../postler/postler-accountsetup.vala:101
 msgid Insert -- to render part of the signature gray.
-msgstr 
+msgstr Vložit -- pro vykreslení části podpisu šedě.
 
 #: ../postler/postler-accountsetup.vala:104
 msgid _Advanced
@@ -168,7 +170,7 @@ msgstr POP3 není podporován.
 
 #: ../postler/postler-accountsetup.vala:129
 msgid _Receiving Server:
-msgstr 
+msgstr _Server pro příjem:
 
 #: ../postler/postler-accountsetup.vala:131
 msgid Username
@@ -180,11 +182,11 @@ msgstr _Přihlašovací jméno:
 
 #: ../postler/postler-accountsetup.vala:135
 msgid Prefix
-msgstr 
+msgstr Předpona
 
 #: ../postler/postler-accountsetup.vala:138
 msgid Prefi_x:
-msgstr 
+msgstr _Předpona:
 
 #: ../postler/postler-accountsetup.vala:139
 msgid smtp.example.com
@@ -192,11 +194,11 @@ msgstr smtp.priklad.cz
 
 #: ../postler/postler-accountsetup.vala:155
 msgid Sen_ding Server:
-msgstr 
+msgstr Server pro o_desílání:
 
 #: ../postler/postler-accountsetup.vala:159
 msgid Sen_ding Port:
-msgstr 
+msgstr Port pro _odesílání:
 
 #: ../postler/postler-accountsetup.vala:161
 msgid STARTTLS is used by default, use port 465 for secure SMTP.
@@ -225,20 +227,20 @@ msgstr Aktualizovat účet
 
 #: ../postler/postler-accountsetup.vala:316
 msgid Saved Search Properties
-msgstr 
+msgstr Vlastnosti uložených hledání
 
 #: ../postler/postler-accountsetup.vala:317
 #, c-format
 msgid You are about to remove the saved search \%s\.
-msgstr 
+msgstr Chcete odebrat uložené hledání \%s\.
 
 #: ../postler/postler-accountsetup.vala:318
 msgid Remove Saved Search
-msgstr 
+msgstr Odebrat uložené hledání
 
 #: ../postler/postler-accountsetup.vala:319
 msgid Update Saved Search
-msgstr 
+msgstr Aktualizovat uložené hledání
 
 #: ../postler/postler-app.vala:91
 #: ../postler/postler-bureau.vala:415
@@ -336,11 +338,11 @@ msgstr[2] Máte %d nových zpráv
 #: ../postler/postler-bureau.vala:224
 #, c-format
 msgid A saved search with the name \%s\ already exists.
-msgstr 
+msgstr Uložené hledání s názvem \%s\ již existuje.
 
 #: ../postler/postler-bureau.vala:227
 msgid Do you want to replace the existing saved search?
-msgstr 
+msgstr Chcete nahradit existující uložené hledání?
 
 #: ../postler/postler-bureau.vala:229
 msgid _Replace
@@ -348,7 +350,7 @@ msgstr _Nahradit
 
 #: ../postler/postler-bureau.vala:360
 msgid translator-credits
-msgstr 
+msgstr Michal Várady miko.v...@gmail.com
 
 #: ../postler/postler-bureau.vala:368
 #: ../postler/postler-composer.vala:491
@@ -403,7 +405,7 @@ msgstr Smazat zprávu
 
 #: ../postler/postler-bureau.vala:390
 msgid Cancel operation on messages
-msgstr 
+msgstr Zrušit operaci na zprávách
 
 #: ../postler/postler-bureau.vala:391
 msgid _Previous Unread Message
@@ -440,7 +442,7 @@ msgstr U_ložit hledání
 
 #: ../postler/postler-bureau.vala:401
 msgid Save the current search
-msgstr 
+msgstr Uložit současné hledání
 
 #: ../postler/postler-bureau.vala:402
 #: ../postler/postler-bureau.vala:403
@@ -516,11 +518,11 @@ msgstr Zobrazit informaci o programu
 
 #: ../postler/postler-bureau.vala:427
 msgid 

[Xfce4-commits] xfconf:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 73982b032145c35869a4143056d6f2fc31f11fc8 (commit)
   from 176fe6ffa5195130bae8b1b0aaa7c4ca90037e59 (commit)

commit 73982b032145c35869a4143056d6f2fc31f11fc8
Author: Michal Várady miko.v...@gmail.com
Date:   Mon Dec 19 00:15:16 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |  137 +
 1 files changed, 56 insertions(+), 81 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 4d953d6..b7dbbe4 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,14 +1,14 @@
 # Czech translations for Xfconf package.
 # Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the Xfconf package.
-#  miko.v...@gmail.com, 2008.
+# Michal Várady miko.v...@gmail.com, 2008-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfconf 0.1.0svn-r28490\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-11-28 21:48+0100\n
-PO-Revision-Date: 2009-10-25 10:52+0100\n
+POT-Creation-Date: 2011-12-18 18:33+\n
+PO-Revision-Date: 2011-12-19 00:15+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech\n
 Language: \n
@@ -36,7 +36,8 @@ msgstr Přístup při změně vlastnosti „%s“ na kanálu „%s“ byl 
zamí
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:387
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:469
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:634
-#: ../xfconfd/xfconf-backend-perchannel-xml.c:654 ../xfconf-query/main.c:341
+#: ../xfconfd/xfconf-backend-perchannel-xml.c:654
+#: ../xfconf-query/main.c:341
 #, c-format
 msgid Property \%s\ does not exist on channel \%s\
 msgstr Vlastnost „%s“ na kanálu „%s“ neexistuje
@@ -95,18 +96,13 @@ msgstr Kořenový element ('/') není platným názvem 
vlastnosti
 
 #: ../xfconfd/xfconf-backend.c:126
 #, c-format
-msgid 
-Property names can only include the ASCII characters A-Z, a-z, 0-9, '_', 
-'-', '' and '', as well as '/' as a separator
-msgstr 
-Názvy vlastností mohou obsahovat pouze znaky kódování ASCII: A-Z, a-z, 0-9, 
-'_', '-', '' a '' a také '/' jako oddělovač
+msgid Property names can only include the ASCII characters A-Z, a-z, 0-9, 
'_', '-', '' and '', as well as '/' as a separator
+msgstr Názvy vlastností mohou obsahovat pouze znaky kódování ASCII: A-Z, a-z, 
0-9, '_', '-', '' a '' a také '/' jako oddělovač
 
 #: ../xfconfd/xfconf-backend.c:135
 #, c-format
 msgid Property names cannot have two or more consecutive '/' characters
-msgstr 
-Názvy vlastností nemohou obsahovat dva nebo více po sobě jdoucích znaků '/
+msgstr Názvy vlastností nemohou obsahovat dva nebo více po sobě jdoucích 
znaků '/
 
 #: ../xfconfd/xfconf-backend.c:146
 #, c-format
@@ -120,39 +116,25 @@ msgstr Název kanálu nemůže být prázdný řetězec
 
 #: ../xfconfd/xfconf-backend.c:176
 #, c-format
-msgid 
-Channel names can only include the ASCII characters A-Z, a-z, 0-9, '_', and 
-'-'
-msgstr 
-Názvy kanálů mohou obsahovat pouze znaky kódování ASCII: A-Z, a-z, 0-9, '_', 
-a '-'
+msgid Channel names can only include the ASCII characters A-Z, a-z, 0-9, '_', 
and '-'
+msgstr Názvy kanálů mohou obsahovat pouze znaky kódování ASCII: A-Z, a-z, 
0-9, '_', a '-'
 
 #: ../xfconfd/xfconf-backend.c:398
 #, c-format
-msgid 
-The property name can only be empty or \/\ if a recursive reset was 
-specified
-msgstr 
-Název vlastnosti může být prázdný, nebo „/“ pouze pokud byl specifikován 
-rekurzivní reset
+msgid The property name can only be empty or \/\ if a recursive reset was 
specified
+msgstr Název vlastnosti může být prázdný, nebo „/“ pouze pokud byl 
specifikován rekurzivní reset
 
 #: ../xfconfd/main.c:134
 msgid Prints the xfconfd version.
 msgstr Zobrazí verzi xfconfd.
 
 #: ../xfconfd/main.c:136
-msgid 
-Configuration backends to use.  The first backend specified is opened read/
-write; the others, read-only.
-msgstr 
-Konfigurovat backendy pro použití. První zadaný backend je otevřen pro čtení 
-a zápis, ostatní pouze pro čtení.
+msgid Configuration backends to use.  The first backend specified is opened 
read/write; the others, read-only.
+msgstr Konfigurovat backendy pro použití. První zadaný backend je otevřen pro 
čtení a zápis, ostatní pouze pro čtení.
 
 #: ../xfconfd/main.c:139
 msgid Fork into background after starting; only useful for testing purposes
-msgstr 
-Po spuštění přenést proces na pozadí; tato volba je užitečná pouze pro 
-testování
+msgstr Po spuštění přenést proces na pozadí; tato volba je užitečná pouze pro 
testování
 
 #: ../xfconfd/main.c:159
 msgid Xfce Configuration Daemon
@@ -181,13 +163,14 @@ msgstr Již je spuštěn jiný démon služby Xfconf
 msgid No backends could be started
 msgstr Nemohly být spuštěny žádné backendy 
 
-#: ../xfconf-query/main.c:90 ../xfconf-query/main.c:95
+#: ../xfconf-query/main.c:90
+#: ../xfconf-query/main.c:95
 msgid set
-msgstr 
+msgstr nastavit
 
 

[Xfce4-commits] xfce4-session:master l10n: Updated Czech (cs) translation to 100%

2011-12-18 Thread Transifex
Updating branch refs/heads/master
 to 894b8c062f4329aee3d6c5f9a2052185162d745d (commit)
   from 182bee5b3158cbff7cf40a461faab6d18655fd86 (commit)

commit 894b8c062f4329aee3d6c5f9a2052185162d745d
Author: Michal Várady miko.v...@gmail.com
Date:   Mon Dec 19 00:21:24 2011 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

 po/cs.po |  582 +-
 1 files changed, 268 insertions(+), 314 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index ecbccfb..85d2955 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -2,14 +2,14 @@
 # Copyright (C) 2003-2010 The Xfce development team.
 # This file is distributed under the same license as the xfce4-session package.
 # Alois Nespor alois.nes...@seznam.cz, 2004.
-# Michal Várady miko.v...@gmail.com, 2006-2010.
+# Michal Várady miko.v...@gmail.com, 2006-2011.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfce4-session 4.4.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-01-16 17:35+0100\n
-PO-Revision-Date: 2010-12-11 01:17+0100\n
+POT-Creation-Date: 2011-12-18 23:12+\n
+PO-Revision-Date: 2011-12-19 00:21+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech translation-team...@lists.sourceforge.net\n
 Language: cs\n
@@ -18,6 +18,14 @@ msgstr 
 Content-Transfer-Encoding: 8bit\n
 X-Generator: KBabel 1.3.1\n
 
+#: ../xfce.desktop.in.h:1
+msgid Use this session to run Xfce as your desktop environment
+msgstr Použít tuto relaci ke spuštění Xfce jako vašeho pracovního prostředí
+
+#: ../xfce.desktop.in.h:2
+msgid Xfce Session
+msgstr Relace prostředí Xfce
+
 #: ../engines/balou/balou-theme.c:110
 msgid No description given
 msgstr Bez popisu
@@ -132,208 +140,143 @@ msgstr Jednoduchá
 msgid Simple Splash Engine
 msgstr Jednoduchá spouštěcí obrazovka
 
-#: ../panel-plugin/xfsm-logout-plugin.c:86
-msgid Session
-msgstr Relace
-
-#: ../panel-plugin/xfsm-logout-plugin.c:87
-msgid Loc_k screen
-msgstr U_zamknout obrazovku
-
-#: ../panel-plugin/xfsm-logout-plugin.c:88
-#: ../panel-plugin/xfsm-logout-plugin.c:128
-msgid _Suspend
-msgstr _Režim spánku
-
-#: ../panel-plugin/xfsm-logout-plugin.c:89
-#: ../panel-plugin/xfsm-logout-plugin.c:135
-msgid _Hibernate
-msgstr _Hibernace
-
-#: ../panel-plugin/xfsm-logout-plugin.c:90
-#: ../panel-plugin/xfsm-logout-plugin.c:121
-msgid _Reboot
-msgstr _Rebootovat
-
-#: ../panel-plugin/xfsm-logout-plugin.c:91
-#: ../panel-plugin/xfsm-logout-plugin.c:114
-msgid Shut _down
-msgstr _Vypnout
-
-#: ../panel-plugin/xfsm-logout-plugin.c:92
-#: ../panel-plugin/xfsm-logout-plugin.c:107
-msgid _Log out
-msgstr _Odhlášení 
-
-#. XFSM_SHUTDOWN_ASK
-#. XFSM_SHUTDOWN_LOGOUT
-#: ../panel-plugin/xfsm-logout-plugin.c:105
-msgid Are you sure you want to log out?
-msgstr Opravdu se chcete odhlásit?
-
-#: ../panel-plugin/xfsm-logout-plugin.c:106
-#, c-format
-msgid You will be logged out in %u seconds.
-msgstr Budete odhlášeni za %u sekund.
-
-#: ../panel-plugin/xfsm-logout-plugin.c:109
-msgid Failed to log out.
-msgstr Odhlášení se nezdařilo.
-
-#. XFSM_SHUTDOWN_HALT
-#: ../panel-plugin/xfsm-logout-plugin.c:112
-msgid Are you sure you want to shut down?
-msgstr Opravdu chcete vypnout počítač?
-
-#: ../panel-plugin/xfsm-logout-plugin.c:113
-#, c-format
-msgid Your system will shut down in %u seconds.
-msgstr Systém se vypne za %u sekund.
-
-#: ../panel-plugin/xfsm-logout-plugin.c:116
-msgid Failed to shut down.
-msgstr Nepodařilo se vypnout počítač.
-
-#. XFSM_SHUTDOWN_REBOOT
-#: ../panel-plugin/xfsm-logout-plugin.c:119
-msgid Are you sure you want to reboot?
-msgstr Opravdu chcete rebootovat počítač?
-
-#: ../panel-plugin/xfsm-logout-plugin.c:120
-#, c-format
-msgid Your system will reboot in %u seconds.
-msgstr Systém se rebootuje za %u sekund.
-
-#: ../panel-plugin/xfsm-logout-plugin.c:123
-msgid Failed to reboot.
-msgstr Rebootování se nezdařilo.
-
-#: ../panel-plugin/xfsm-logout-plugin.c:130
-msgid Failed to suspend
-msgstr Přechod do režimu spánku se nezdařil.
-
-#: ../panel-plugin/xfsm-logout-plugin.c:137
-msgid Failed to hibernate
-msgstr Hibernace se nezdařila.
-
-#: ../panel-plugin/xfsm-logout-plugin.c:150
-msgid Xflock4 could not be launched
-msgstr Nelze spustit aplikaci Xfclock4
-
-#: ../panel-plugin/xfsm-logout-plugin.c:222
-msgid Close Session
-msgstr Zavřít relaci
-
-#: ../settings/main.c:42
+#: ../settings/main.c:43
 msgid Settings manager socket
 msgstr Socket pro správce nastavení
 
-#: ../settings/main.c:42
+#: ../settings/main.c:43
 msgid SOCKET ID
 msgstr SOCKET ID
 
-#: ../settings/main.c:43
+#: ../settings/main.c:44
 msgid Version information
 msgstr Informace o verzi
 
-#: ../settings/main.c:73
+#: ../settings/main.c:74
 #, c-format
 msgid Type '%s --help' for usage.
 msgstr Informace o použití získáte příkazem '%s --help'
 
-#: ../settings/main.c:85 ../xfce4-session/main.c:226
+#: ../settings/main.c:86
+#: