[Xfce4-commits] l10n: Updated Indonesian (id) translation to None%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 429bdf17a279a2d7d4eafcb0a9584b2396512302 (commit)
   from f71808ea9833ff6ecd28373c6f6b69b98ba7bd9e (commit)

commit 429bdf17a279a2d7d4eafcb0a9584b2396512302
Author: Andhika Padmawan 
Date:   Fri Apr 13 03:11:24 2012 +0200

l10n: Updated Indonesian (id) translation to None%

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

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

 po/id.po |   19 ++-
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/po/id.po b/po/id.po
index 37768e7..cf9b853 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2011 THE transd'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the transd package.
 # Andhika Padmawan , 2011.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: transd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-03-05 11:01+\n"
+"POT-Creation-Date: 2012-04-12 19:39+\n"
 "PO-Revision-Date: 2011-03-05 19:10+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian\n"
@@ -16,23 +16,24 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Language: id\n"
 
-#: ../src/transd.c:116
-msgid "Configuration format changed."
-msgstr "Format konfigurasi diubah."
-
-#: ../src/transd.c:117
+#: ../src/transd.c:192
+#, c-format
 msgid ""
 "Transd now uses a new configuration file format.  Please see the README for "
-"details.  Transd will now exit."
+"details.  Transd will now exit.\n"
 msgstr ""
 "Transd saat ini mengunakan format berkas konfigurasi baru. Silakan lihat "
 "README untuk detail. Transd sekarang akan keluar."
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
-msgstr "Jurik yang memonitor jendela dan mengatur transparansi berdasarkan "
+msgstr ""
+"Jurik yang memonitor jendela dan mengatur transparansi berdasarkan "
 "seperangkat aturan"
 
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "Jurik Transparansi"
+
+#~ msgid "Configuration format changed."
+#~ msgstr "Format konfigurasi diubah."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Require GTK+3 for granite, but only if enabled

2012-04-12 Thread Christian Dywan
Updating branch refs/heads/master
 to a006013cb459affbb77a08ae945a839f88c7a327 (commit)
   from 8d0d2554ca5cbefd4c4cf2facfea00f1100de699 (commit)

commit a006013cb459affbb77a08ae945a839f88c7a327
Author: Christian Dywan 
Date:   Fri Apr 13 00:07:40 2012 +0200

Require GTK+3 for granite, but only if enabled

 wscript |   11 ---
 1 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/wscript b/wscript
index b1d8107..cb6d7d3 100644
--- a/wscript
+++ b/wscript
@@ -211,9 +211,14 @@ def configure (conf):
 
 if option_enabled ('granite'):
 if not option_enabled ('gtk3'):
-option_checkfatal ('granite', 'granite requires --enable-gtk3')
-check_pkg ('granite', '0.1', False)
-granite = ['N/A', 'yes'][conf.env['HAVE_GRANITE'] == 1]
+if getattr (Options.options, 'enable_granite'):
+Utils.pprint ('RED', 'Granite requires --enable-gtk3')
+sys.exit (1)
+else:
+granite = 'no (requires --enable-gtk3)'
+else:
+check_pkg ('granite', '0.1', False)
+granite = ['N/A', 'yes'][conf.env['HAVE_GRANITE'] == 1]
 if granite != 'yes':
 option_checkfatal ('granite', 'new notebook, pop-overs')
 conf.define ('GRANITE_VERSION', 'No')
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Ignore request if the source is a navigation request

2012-04-12 Thread Christian Dywan
Updating branch refs/heads/master
 to 8d0d2554ca5cbefd4c4cf2facfea00f1100de699 (commit)
   from 08d890e20e4299976d6fa2ea673d606693771317 (commit)

commit 8d0d2554ca5cbefd4c4cf2facfea00f1100de699
Author: André Stösel 
Date:   Thu Apr 12 23:17:02 2012 +0200

Ignore request if the source is a navigation request

Fixes: https://bugs.launchpad.net/midori/+bug/979767

 extensions/adblock.c |   44 
 1 files changed, 44 insertions(+), 0 deletions(-)

diff --git a/extensions/adblock.c b/extensions/adblock.c
index da59e75..aa64eeb 100644
--- a/extensions/adblock.c
+++ b/extensions/adblock.c
@@ -39,6 +39,7 @@ static GHashTable* keys = NULL;
 static GHashTable* optslist = NULL;
 static GHashTable* urlcache = NULL;
 static GHashTable* blockcssprivate = NULL;
+static GHashTable* navigationwhitelist = NULL;
 static GString* blockcss = NULL;
 #ifdef G_ENABLE_DEBUG
 static guint debug;
@@ -127,6 +128,8 @@ adblock_destroy_db ()
 urlcache = NULL;
 g_hash_table_destroy (blockcssprivate);
 blockcssprivate = NULL;
+g_hash_table_destroy (navigationwhitelist);
+navigationwhitelist = NULL;
 }
 
 static void
@@ -147,6 +150,9 @@ adblock_init_db ()
 blockcssprivate = g_hash_table_new_full (g_str_hash, g_str_equal,
(GDestroyNotify)g_free,
(GDestroyNotify)g_free);
+navigationwhitelist = g_hash_table_new_full (g_direct_hash, g_str_equal,
+   NULL,
+   (GDestroyNotify)g_free);
 
 if (blockcss && blockcss->len > 0)
 g_string_free (blockcss, TRUE);
@@ -779,6 +785,23 @@ adblock_prepare_urihider_js (GList* uris)
 return g_string_free (js, FALSE);
 }
 
+static gboolean
+adblock_navigation_policy_decision_requested_cb (WebKitWebView* 
web_view,
+ WebKitWebFrame*
web_frame,
+ WebKitNetworkRequest*  
request,
+ WebKitWebNavigationAction* 
action,
+ WebKitWebPolicyDecision*   
decision,
+ MidoriView*
view)
+{
+if (web_frame == webkit_web_view_get_main_frame (web_view))
+{
+const gchar* req_uri = webkit_network_request_get_uri (request);
+g_hash_table_replace (navigationwhitelist, web_view, g_strdup 
(req_uri));
+}
+return false;
+}
+
+
 static void
 adblock_resource_request_starting_cb (WebKitWebView* web_view,
   WebKitWebFrame*web_frame,
@@ -798,6 +821,10 @@ adblock_resource_request_starting_cb (WebKitWebView*   
  web_view,
 return;
 
 req_uri = webkit_network_request_get_uri (request);
+
+if (!g_strcmp0 (req_uri, g_hash_table_lookup (navigationwhitelist, 
web_view)))
+return;
+
 if (!midori_uri_is_http (req_uri)
  || g_str_has_suffix (req_uri, "favicon.ico"))
 return;
@@ -983,6 +1010,8 @@ adblock_add_tab_cb (MidoriBrowser*   browser,
 
 g_signal_connect_after (web_view, "populate-popup",
 G_CALLBACK (adblock_populate_popup_cb), extension);
+g_signal_connect (web_view, "navigation-policy-decision-requested",
+G_CALLBACK (adblock_navigation_policy_decision_requested_cb), view);
 g_signal_connect (web_view, "resource-request-starting",
 G_CALLBACK (adblock_resource_request_starting_cb), image);
 g_signal_connect (web_view, "load-finished",
@@ -990,6 +1019,15 @@ adblock_add_tab_cb (MidoriBrowser*   browser,
 }
 
 static void
+adblock_remove_tab_cb (MidoriBrowser*   browser,
+   MidoriView*  view,
+   MidoriExtension* extension)
+{
+GtkWidget* web_view = midori_view_get_web_view (view);
+g_hash_table_remove (navigationwhitelist, web_view);
+}
+
+static void
 adblock_deactivate_cb (MidoriExtension* extension,
MidoriBrowser*   browser);
 
@@ -1021,6 +1059,8 @@ adblock_app_add_browser_cb (MidoriApp*   app,
   (GtkCallback)adblock_add_tab_foreach_cb, extension);
 g_signal_connect (browser, "add-tab",
 G_CALLBACK (adblock_add_tab_cb), extension);
+g_signal_connect (browser, "remove-tab",
+G_CALLBACK (adblock_remove_tab_cb), extension);
 g_signal_connect (extension, "open-preferences",
 G_CALLBACK (adblock_open_preferences_cb), extension);
 g_signal_connect (extension, "deactivate",
@@ -1466,6 +1506,8 @@ adblock_deactivate_tabs (MidoriView*  view,
web_view, adblock_resource_request_starting_cb, image);
 g_signal_handlers_disconnect_by_func (
web_view, adblock_load_finished_cb, image);
+g_signal_handlers_disconnect_by_func (
+web_view, adblock_navigation_policy_decision_requested_cb, view);
 }
 
 static void
@@ -1483,6 +1525,8 @@ adblock_deactivate_cb (MidoriExtensi

[Xfce4-commits] adblock_deactivate_tabs had the wrong user data

2012-04-12 Thread Christian Dywan
Updating branch refs/heads/master
 to 08d890e20e4299976d6fa2ea673d606693771317 (commit)
   from ee4fb4f7ef15dcaaf9eaaabf5abd0eaf1304af92 (commit)

commit 08d890e20e4299976d6fa2ea673d606693771317
Author: André Stösel 
Date:   Thu Apr 12 23:10:45 2012 +0200

adblock_deactivate_tabs had the wrong user data

Fixes: https://bugs.launchpad.net/midori/+bug/977981

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

diff --git a/extensions/adblock.c b/extensions/adblock.c
index 0d46d9e..da59e75 100644
--- a/extensions/adblock.c
+++ b/extensions/adblock.c
@@ -1459,8 +1459,6 @@ adblock_deactivate_tabs (MidoriView*  view,
 GtkWidget* image = g_object_get_data (G_OBJECT (browser), "status-image");
 
 g_signal_handlers_disconnect_by_func (
-   browser, adblock_add_tab_cb, extension);
-g_signal_handlers_disconnect_by_func (
web_view, adblock_window_object_cleared_cb, 0);
 g_signal_handlers_disconnect_by_func (
web_view, adblock_populate_popup_cb, extension);
@@ -1485,7 +1483,7 @@ adblock_deactivate_cb (MidoriExtension* extension,
 app, adblock_app_add_browser_cb, extension);
 g_signal_handlers_disconnect_by_func (
 browser, adblock_add_tab_cb, extension);
-midori_browser_foreach (browser, (GtkCallback)adblock_deactivate_tabs, 
browser);
+midori_browser_foreach (browser, (GtkCallback)adblock_deactivate_tabs, 
extension);
 
 adblock_destroy_db ();
 midori_web_settings_remove_style (settings, "adblock-blockcss");
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Don't set invalid startup id.

2012-04-12 Thread Nick Schermer
Updating branch refs/heads/master
 to 5c6168bf7ccd8324a387d9aa47eb71337d54f5e0 (commit)
   from d8cbfb05e2b800fa5f85d2d2f50903da332a0551 (commit)

commit 5c6168bf7ccd8324a387d9aa47eb71337d54f5e0
Author: Nick Schermer 
Date:   Thu Apr 12 22:43:32 2012 +0200

Don't set invalid startup id.

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

diff --git a/exo-helper/main.c b/exo-helper/main.c
index 4f8fa7e..90ddef4 100644
--- a/exo-helper/main.c
+++ b/exo-helper/main.c
@@ -144,7 +144,7 @@ main (int argc, char **argv)
   gtk_widget_show (plug_child);
 
   /* End startup notification */
-  gdk_notify_startup_complete_with_id (startup_id);
+  gdk_notify_startup_complete ();
 
   gtk_main ();
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated German (de) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 6915b6cccf8aa53179baf9f60c1cd3755e51377f (commit)
   from 728c29324856a3afc78f1fbee95c257eb0c6649f (commit)

commit 6915b6cccf8aa53179baf9f60c1cd3755e51377f
Author: Jakob Kramer 
Date:   Thu Apr 12 22:06:28 2012 +0200

l10n: Updated German (de) translation to 100%

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

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

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

diff --git a/po/de.po b/po/de.po
index 92c6354..9af2967 100644
--- a/po/de.po
+++ b/po/de.po
@@ -339,7 +339,7 @@ msgstr "Danke für Ihr Interesse an Xfce."
 
 #: ../xfce4-about/main.c:153
 msgid "The Xfce Development Team"
-msgstr "Das Xfce Entwicklungsteam"
+msgstr "Das Xfce-Entwicklerteam"
 
 #: ../xfce4-about/main.c:262
 msgid ""
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated German (de) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 728c29324856a3afc78f1fbee95c257eb0c6649f (commit)
   from e6f4d803fef7e15741ff851e470f09ac16142d68 (commit)

commit 728c29324856a3afc78f1fbee95c257eb0c6649f
Author: Jakob Kramer 
Date:   Thu Apr 12 21:58:04 2012 +0200

l10n: Updated German (de) translation to 100%

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

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

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

diff --git a/po/de.po b/po/de.po
index ee057b0..92c6354 100644
--- a/po/de.po
+++ b/po/de.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: libxfce4ui master\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-04-12 18:15+\n"
-"PO-Revision-Date: 2012-04-03 20:58+0200\n"
+"PO-Revision-Date: 2012-04-12 21:52+0200\n"
 "Last-Translator: Jakob Kramer \n"
 "Language-Team: German\n"
 "MIME-Version: 1.0\n"
@@ -358,9 +358,9 @@ msgid ""
 "Xfce 4 is copyright Olivier Fourdan (four...@xfce.org). The different "
 "components are copyrighted by their respective authors."
 msgstr ""
-"Xfce 4 ist kopiergeschützt von Olivier Fourdan (four...@xfce.org). Die "
-"unterschiedlichen Komponenten sind von ihren jeweiligen Autoren "
-"kopiergeschützt."
+"Das Urheberrecht von Xfce 4 liegt bei Olivier Fourdan (four...@xfce.org). "
+"Die unterschiedlichen Komponenten werden durch ihre jeweiligen Autoren "
+"urheberrechtlich geschützt."
 
 #: ../xfce4-about/main.c:288
 msgid ""
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated German (de) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to e6f4d803fef7e15741ff851e470f09ac16142d68 (commit)
   from fb94d94bf036e28635a3ed3ec96b12a033ae784a (commit)

commit e6f4d803fef7e15741ff851e470f09ac16142d68
Author: Jakob Kramer 
Date:   Thu Apr 12 21:43:09 2012 +0200

l10n: Updated German (de) translation to 100%

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

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

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

diff --git a/po/de.po b/po/de.po
index 94e26cf..ee057b0 100644
--- a/po/de.po
+++ b/po/de.po
@@ -354,7 +354,6 @@ msgid "Thanks to all who helped making this software 
available!"
 msgstr "Danke an alle, die geholfen haben, diese Software verfügbar zu machen!"
 
 #: ../xfce4-about/main.c:283
-#, fuzzy
 msgid ""
 "Xfce 4 is copyright Olivier Fourdan (four...@xfce.org). The different "
 "components are copyrighted by their respective authors."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated German (de) translation to 98%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to fb94d94bf036e28635a3ed3ec96b12a033ae784a (commit)
   from 6b62ad9a4790622bc4f505389b264f72346c3fdb (commit)

commit fb94d94bf036e28635a3ed3ec96b12a033ae784a
Author: Jakob Kramer 
Date:   Thu Apr 12 21:42:32 2012 +0200

l10n: Updated German (de) translation to 98%

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

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

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

diff --git a/po/de.po b/po/de.po
index 21e68ec..94e26cf 100644
--- a/po/de.po
+++ b/po/de.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: libxfce4ui master\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-06 12:45+\n"
+"POT-Creation-Date: 2012-04-12 18:15+\n"
 "PO-Revision-Date: 2012-04-03 20:58+0200\n"
 "Last-Translator: Jakob Kramer \n"
 "Language-Team: German\n"
@@ -207,7 +207,7 @@ msgstr "Dialog mit Titel"
 
 #: ../glade/libxfce4ui.xml.in.h:3
 msgid "Xfce 4 Widgets"
-msgstr "Xfce 4-Elemente"
+msgstr "Xfce-4-Elemente"
 
 #: ../xfce4-about/main.c:52
 msgid "Version information"
@@ -354,6 +354,7 @@ msgid "Thanks to all who helped making this software 
available!"
 msgstr "Danke an alle, die geholfen haben, diese Software verfügbar zu machen!"
 
 #: ../xfce4-about/main.c:283
+#, fuzzy
 msgid ""
 "Xfce 4 is copyright Olivier Fourdan (four...@xfce.org). The different "
 "components are copyrighted by their respective authors."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated German (de) translation to 96%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to b2a1c20ae86176870aa2f72a73506c267895250a (commit)
   from b7d773000c41c4ab61a8169369dc8fe38938a6c9 (commit)

commit b2a1c20ae86176870aa2f72a73506c267895250a
Author: Jakob Kramer 
Date:   Thu Apr 12 21:25:55 2012 +0200

l10n: Updated German (de) translation to 96%

New status: 373 messages complete with 14 fuzzies and 0 untranslated.

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

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

diff --git a/po/de.po b/po/de.po
index 4cfb494..60f087e 100644
--- a/po/de.po
+++ b/po/de.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-11 16:27+\n"
+"POT-Creation-Date: 2012-04-12 15:27+\n"
 "PO-Revision-Date: 2012-01-21 15:46+0100\n"
 "Last-Translator: Paul Seyfert \n"
 "Language-Team: German \n"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Update artwork tarball.

2012-04-12 Thread Nick Schermer
Updating branch refs/heads/xfce-4.10
 to b917c5599441107f2f9fc7aa31169ec219528804 (commit)
   from c248e7b0c6ef65e1fd8d870950995a34635c3419 (commit)

commit b917c5599441107f2f9fc7aa31169ec219528804
Author: Nick Schermer 
Date:   Thu Apr 12 19:28:36 2012 +0200

Update artwork tarball.

Remove some old stuff and add new background xcf.

 static/downloads/xfce_artwork.tar.bz2 |  Bin 783862 -> 4798695 bytes
 1 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/static/downloads/xfce_artwork.tar.bz2 
b/static/downloads/xfce_artwork.tar.bz2
index 5e158e7..4c21040 100644
Binary files a/static/downloads/xfce_artwork.tar.bz2 and 
b/static/downloads/xfce_artwork.tar.bz2 differ
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 6b62ad9a4790622bc4f505389b264f72346c3fdb (commit)
   from 349508583b655d558a6302fae29546884cab9c10 (commit)

commit 6b62ad9a4790622bc4f505389b264f72346c3fdb
Author: Nuno Miguel 
Date:   Thu Apr 12 19:26:15 2012 +0200

l10n: Updated Portuguese (pt) translation to 100%

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

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

 po/pt.po |   52 ++--
 1 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 7e4044e..e73d899 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,20 +1,20 @@
 # European Portuguese translation for libxfce4ui.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Nuno Miguel , 2008, 2009.
+# Nuno Miguel , 2008-2012.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-01-08 15:33+\n"
-"PO-Revision-Date: 2012-01-18 14:28-\n"
-"Last-Translator: Sérgio Marques \n"
+"PO-Revision-Date: 2012-04-12 18:23+0100\n"
+"Last-Translator: Nuno Miguel \n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
+"Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Poedit-Language: Portuguese\n"
 "X-Poedit-Country: PORTUGAL\n"
@@ -38,7 +38,7 @@ msgstr "Documentação na Internet"
 
 #: ../libxfce4ui/xfce-dialogs.c:203
 msgid "You will be redirected to the documentation website where the help 
pages are maintained and translated."
-msgstr "Será direcionado para a página de documentação na Internet, na qual as 
páginas de ajuda são produzidas e traduzidas"
+msgstr "Será direcionado para a página de documentação na Internet, na qual as 
páginas de ajuda são produzidas e traduzidas."
 
 #: ../libxfce4ui/xfce-dialogs.c:207
 msgid "_Read Online"
@@ -143,7 +143,7 @@ msgstr "Ações em conflito para %s"
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:128
 msgid "This shortcut is already being used for something else."
-msgstr "Este atalho já está a ser utilizado para outra coisa"
+msgstr "Este atalho já está a ser utilizado para outra coisa."
 
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:204
 msgid "Window Manager Action Shortcut"
@@ -172,7 +172,7 @@ msgstr "Atalho:"
 
 #: ../libxfce4kbd-private/xfce-shortcut-dialog.c:300
 msgid "Could not grab the keyboard."
-msgstr "Incapaz de capturar o teclado"
+msgstr "Incapaz de capturar o teclado."
 
 #: ../glade/libxfce4ui.xml.in.h:1
 msgid "Subtitle"
@@ -196,7 +196,7 @@ msgstr "Gestor de janelas"
 
 #: ../xfce4-about/main.c:71
 msgid "Handles the placement of windows on the screen."
-msgstr "Faz a gestão do posicionamento das janelas no ecrã"
+msgstr "Faz a gestão do posicionamento das janelas no ecrã."
 
 #: ../xfce4-about/main.c:74
 msgid "Panel"
@@ -204,7 +204,7 @@ msgstr "Painel"
 
 #: ../xfce4-about/main.c:75
 msgid "Program launchers, window buttons, applications menu, workspace 
switcher and more."
-msgstr "Lançadores de programas, botões de janelas, menu de aplicações, áreas 
de trabalho e mais..."
+msgstr "Lançadores de programas, botões de janelas, menu de aplicações, áreas 
de trabalho e mais."
 
 #: ../xfce4-about/main.c:79
 msgid "Desktop Manager"
@@ -212,7 +212,7 @@ msgstr "Gestor do ambiente de trabalho"
 
 #: ../xfce4-about/main.c:80
 msgid "Sets the background color or image with optional application menu or 
icons for minimized applications or launchers, devices and folders."
-msgstr "Define a cor ou imagem de fundo, com o menu de aplicações opcional ou 
ícones para as aplicações ou lançadores minimizados, dispositivos e pastas"
+msgstr "Define a cor ou imagem de fundo, com o menu de aplicações opcional ou 
ícones para as aplicações ou lançadores minimizados, dispositivos e pastas."
 
 #: ../xfce4-about/main.c:84
 msgid "File Manager "
@@ -220,7 +220,7 @@ msgstr "Gestor de ficheiros"
 
 #: ../xfce4-about/main.c:85
 msgid "A modern file manager for the Unix/Linux desktop, aiming to be 
easy-to-use and fast."
-msgstr "Um gestor de ficheiros moderno para os ambientes de trabalho 
Unix/Linux, criado para ser rápido e fácil de utilizar"
+msgstr "Um gestor de ficheiros moderno para os ambientes de trabalho 
Unix/Linux, criado para ser rápido e fácil de utilizar."
 
 #: ../xfce4-about/main.c:89
 msgid "Session Manager"
@@ -228,7 +228,7 @@ msgstr "Gestor de sessões"
 
 #: ../xfce4-about/main.c:90
 msgid "Restores your session on startup and allows you to shutdown the 
computer from Xfce."
-msgstr "Restaura a sessão ao arrancar e permite-lhe desligar, suspender, 
hibernar ou terminar a sessão do Xfce"
+msgstr "Restaura a sessão ao arrancar e permite-lhe desligar, suspender, 
hibernar ou terminar a sessão do Xfce."
 
 #: ../xfce4-about/main.c:94
 msgid "Setting System"
@@ -236,7 +236,7 @@ msgstr "Definições do sis

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 01f1edd2c8aa02b4603fbef5f3486956e8a8bd1e (commit)
   from 69245cb170811214e647577da8338316dccb3cd6 (commit)

commit 01f1edd2c8aa02b4603fbef5f3486956e8a8bd1e
Author: Nuno Miguel 
Date:   Thu Apr 12 19:20:39 2012 +0200

l10n: Updated Portuguese (pt) translation to 100%

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

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

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

diff --git a/po/pt.po b/po/pt.po
index 6aa4693..2bd84d3 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,20 +1,20 @@
 # Portuguese translations for libxfce package.
 # Copyright (C) 2007 THE libxfce'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the libxfce package.
-# Nuno Miguel , 2007.
-# 
+# Nuno Miguel , 2007-2012.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: garcon\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-02-02 08:12+\n"
-"PO-Revision-Date: 2012-01-18 12:39-\n"
-"Last-Translator: Sérgio Marques \n"
+"PO-Revision-Date: 2012-04-12 18:16+0100\n"
+"Last-Translator: Nuno Miguel \n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
+"Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Poedit-Language: Portuguese\n"
 "X-Poedit-Country: PORTUGAL\n"
@@ -139,9 +139,10 @@ msgstr "O ficheiro \"%s\" não foi encontrado"
 #: ../garcon/garcon-menu-parser.c:280
 #, c-format
 msgid "Could not load menu file data from %s: %s"
-msgstr "Não foi possível carregar os dados do menu em %s: %s"
+msgstr "Incapaz de carregar os dados do menu em %s: %s"
 
 #: ../garcon/garcon-menu-parser.c:287
 #, c-format
 msgid "Could not load menu file data from %s"
-msgstr "Não foi possível carregar os dados do menu em %s"
+msgstr "Incapaz de carregar os dados do menu em %s"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to da0b67d0ee035166f3715e182c26086f49a7a4c5 (commit)
   from 9287c66b8feb1c0e72c74a58a7f6dbdc29a8648e (commit)

commit da0b67d0ee035166f3715e182c26086f49a7a4c5
Author: Nuno Miguel 
Date:   Thu Apr 12 19:13:47 2012 +0200

l10n: Updated Portuguese (pt) translation to 100%

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

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

 po/pt.po |   43 ++-
 1 files changed, 18 insertions(+), 25 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 9194e29..6afb48d 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the xfwm4 package.
 # Nuno Donato , 2004.
 # Nuno Miguel , 2007-2012.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-04-10 08:18+\n"
-"PO-Revision-Date: 2012-03-08 22:48+0100\n"
-"Last-Translator: Nuno Miguel \n"
+"PO-Revision-Date: 2012-04-11 15:21+0100\n"
+"Last-Translator: Nuno Miguel \n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -37,13 +37,13 @@ msgstr "Nenhum"
 
 #: ../settings-dialogs/tweaks-settings.c:454
 msgid "Session manager socket"
-msgstr "\"Socket\" do gestor de sessões"
+msgstr "Socket do gestor de sessões"
 
 #: ../settings-dialogs/tweaks-settings.c:454
 #: ../settings-dialogs/workspace-settings.c:381
 #: ../settings-dialogs/xfwm4-settings.c:315
 msgid "SOCKET ID"
-msgstr "ID de \"SOCKET\""
+msgstr "ID de SOCKET"
 
 #: ../settings-dialogs/tweaks-settings.c:455
 #: ../settings-dialogs/workspace-settings.c:382
@@ -66,7 +66,7 @@ msgid ""
 "Try %s --help to see a full list of available command line options.\n"
 msgstr ""
 "%s: %s\n"
-"Tente %s --help para ver uma lista completa de opções em linha de comandos\n"
+"Tente %s --help para ver uma lista completa de opções em linha de comandos.\n"
 
 #: ../settings-dialogs/workspace-settings.c:74
 #: ../settings-dialogs/workspace-settings.c:89
@@ -81,7 +81,7 @@ msgstr "Nome da área de trabalho"
 #: ../settings-dialogs/workspace-settings.c:381
 #: ../settings-dialogs/xfwm4-settings.c:315
 msgid "Settings manager socket"
-msgstr "\"Socket\" do gestor de definições"
+msgstr "Socket do gestor de definições"
 
 #: ../settings-dialogs/xfce-wm-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-dialog.glade.h:29
@@ -106,7 +106,7 @@ msgstr "Ajustes do gestor de janelas"
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
 msgid "Configure layout, names and margins"
-msgstr "Configurar esquema, nome e margens"
+msgstr "Configurar esquema, nomes e margens"
 
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
@@ -637,7 +637,7 @@ msgstr "Falha ao iniciar xfconf. Motivo: %s"
 
 #: ../settings-dialogs/xfwm4-settings.c:1004
 msgid "Could not create the settings dialog."
-msgstr "Incapaz de criar o diálogo de definições"
+msgstr "Incapaz de criar o diálogo de definições."
 
 #: ../settings-dialogs/xfwm4-settings.c:1891
 #: ../settings-dialogs/xfwm4-settings.c:1892
@@ -645,9 +645,7 @@ msgid "Reset to Defaults"
 msgstr "Repor omissões"
 
 #: ../settings-dialogs/xfwm4-settings.c:1893
-msgid ""
-"This will reset all shortcuts to their default values. Do you really want to "
-"do this?"
+msgid "This will reset all shortcuts to their default values. Do you really 
want to do this?"
 msgstr "Vai repor todos os atalhos para os seus valores originais. Continuar?"
 
 #. Smart placement size
@@ -673,7 +671,7 @@ msgstr "No ce_ntro do ecrã"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:9
 msgid "Automaticaly _tile windows when moving toward the screen edge"
-msgstr "Ao mover para o limite do ecrã, criar mosaicos das janelas 
automa_ticamente"
+msgstr "Ao mover para o _limite do ecrã, criar mosaicos das janelas 
automaticamente"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:10
 msgid "By default, place windows:"
@@ -737,7 +735,7 @@ msgstr "Opacidade das janelas em _movimento:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:26
 msgid "Opacity of windows during resi_ze:"
-msgstr "Opacidade das janelas ao redi_mensionar"
+msgstr "Opacidade das janelas ao redi_mensionar:"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:27
 msgid "Restore original _size of maximized windows when moving"
@@ -765,7 +763,7 @@ msgstr "Por bai_xo do ponteiro do rato"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:33
 msgid "Use _edge resistance instead of window snapping"
-msgstr "Utilizar r_esistência de limites ao invés do alinhamento de janelas"
+msgstr "Utilizar resistê_ncia de limites ao invés do alinhamento de janelas"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:34
 msgid "Use the _mouse wheel on the desktop to switch workspaces"
@@ -777,14 +775,11 @@ msgstr "Quando uma jan

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 5bd5acf42113cde1f2815e286e866376d9bd3623 (commit)
   from 0ce2d1f0dba296c0e8019c96189b54a0c58b7af3 (commit)

commit 5bd5acf42113cde1f2815e286e866376d9bd3623
Author: Nuno Miguel 
Date:   Thu Apr 12 19:10:35 2012 +0200

l10n: Updated Portuguese (pt) translation to 100%

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

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

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

diff --git a/po/pt.po b/po/pt.po
index 9873054..ea56a74 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,17 +1,17 @@
 # European Portuguese translation of the xfconf package.
 # Copyright (C) 2008 The Xfce development team.
 # This file is distributed under the same license as the xfconf package.
-# Nuno Miguel , 2008.
+# Nuno Miguel , 2008-2012.
 #
 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: 2012-01-18 12:36-\n"
-"Last-Translator: Sérgio Marques \n"
+"PO-Revision-Date: 2012-04-11 15:43+0100\n"
+"Last-Translator: Nuno Miguel \n"
 "Language-Team: \n"
-"Language: \n"
+"Language: pt\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -127,11 +127,11 @@ msgstr "O nome da propriedade só pode ser vazio ou \"/\" 
se indicar um reposiç
 
 #: ../xfconfd/main.c:134
 msgid "Prints the xfconfd version."
-msgstr "Imprime a versão do xfconfd"
+msgstr "Imprime a versão do xfconfd."
 
 #: ../xfconfd/main.c:136
 msgid "Configuration backends to use.  The first backend specified is opened 
read/write; the others, read-only."
-msgstr "A infraestrutura utilizada. A 1.ª infraestrutura especificada é aberta 
no modo de escrita/leitura e as seguintes no modo de leitura"
+msgstr "A configuração de infraestrutura usada. A primeira infraestrutura 
especificada é aberta em leitura/escrita, as outras só de leitura."
 
 #: ../xfconfd/main.c:139
 msgid "Fork into background after starting; only useful for testing purposes"
@@ -246,7 +246,7 @@ msgstr "A equipa de desenvolvimento do Xfce. Todos os 
direitos reservados."
 #: ../xfconf-query/main.c:267
 #, c-format
 msgid "Please report bugs to <%s>."
-msgstr "Por favor, reporte os erros em <%s>"
+msgstr "Por favor, reporte os erros em <%s>."
 
 #: ../xfconf-query/main.c:279
 msgid "Channels:"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fix distcheck what broke in previous commit.

2012-04-12 Thread Nick Schermer
Updating branch refs/heads/master
 to c508d8f657724d336a6023150256109a27d3514c (commit)
   from 29321d7b3ffd94514b3a83192f6679e6f2f05e19 (commit)

commit c508d8f657724d336a6023150256109a27d3514c
Author: Nick Schermer 
Date:   Thu Apr 12 18:37:16 2012 +0200

Fix distcheck what broke in previous commit.

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

diff --git a/backgrounds/Makefile.am b/backgrounds/Makefile.am
index dfaf0ca..33181f7 100644
--- a/backgrounds/Makefile.am
+++ b/backgrounds/Makefile.am
@@ -5,4 +5,4 @@ backgroundsdir = $(datadir)/backgrounds/xfce
 
 backgrounds_DATA = xfce-blue.jpg
 
-EXTRA_DIST = $(backdrops_DATA)
+EXTRA_DIST = $(backgrounds_DATA)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Add new background and remove old ones.

2012-04-12 Thread Nick Schermer
Updating branch refs/heads/master
 to 29321d7b3ffd94514b3a83192f6679e6f2f05e19 (commit)
   from 6caa4cc93893b16d7b2bf6f951038350074e85ee (commit)

commit 29321d7b3ffd94514b3a83192f6679e6f2f05e19
Author: Nick Schermer 
Date:   Thu Apr 12 18:33:09 2012 +0200

Add new background and remove old ones.

Also move the background to the more common location
$datadir/backgrounds/xfce/.

 Makefile.am  |2 +-
 backdrops/Makefile.am|   16 
 backdrops/xfce-in-a-grid.png |  Bin 21797 -> 0 bytes
 backdrops/xfce-in-the-moon.png   |  Bin 206593 -> 0 bytes
 backdrops/xfce-smoke.png |  Bin 130670 -> 0 bytes
 backdrops/xfce-stellar-tile.png  |  Bin 365 -> 0 bytes
 backdrops/xfce-stripes.png   |  Bin 120652 -> 0 bytes
 backdrops/xfce-turbulence.png|  Bin 359913 -> 0 bytes
 backdrops/xfce4gradientcurve.png |  Bin 89171 -> 0 bytes
 backdrops/xfce4logo.png  |  Bin 46408 -> 0 bytes
 backgrounds/Makefile.am  |8 
 backgrounds/xfce-blue.jpg|  Bin 0 -> 152462 bytes
 common/xfdesktop-common.h|2 +-
 configure.ac.in  |2 +-
 14 files changed, 11 insertions(+), 19 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index c03ae9c..9731cfa 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,7 @@
 @SET_MAKE@
 
 SUBDIRS = \
-   backdrops \
+   backgrounds \
common \
doc \
po \
diff --git a/backdrops/Makefile.am b/backdrops/Makefile.am
deleted file mode 100644
index 879d8e6..000
--- a/backdrops/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-# backdrops/Makefile.am
-#
-
-backdropsdir = $(datadir)/xfce4/backdrops
-
-backdrops_DATA =   \
-   xfce4gradientcurve.png  \
-   xfce4logo.png   \
-   xfce-in-a-grid.png  \
-   xfce-in-the-moon.png\
-   xfce-stripes.png\
-   xfce-smoke.png  \
-   xfce-turbulence.png \
-   xfce-stellar-tile.png
-
-EXTRA_DIST = $(backdrops_DATA)
diff --git a/backdrops/xfce-in-a-grid.png b/backdrops/xfce-in-a-grid.png
deleted file mode 100644
index 9a0e015..000
Binary files a/backdrops/xfce-in-a-grid.png and /dev/null differ
diff --git a/backdrops/xfce-in-the-moon.png b/backdrops/xfce-in-the-moon.png
deleted file mode 100644
index afa67be..000
Binary files a/backdrops/xfce-in-the-moon.png and /dev/null differ
diff --git a/backdrops/xfce-smoke.png b/backdrops/xfce-smoke.png
deleted file mode 100644
index 2463fbb..000
Binary files a/backdrops/xfce-smoke.png and /dev/null differ
diff --git a/backdrops/xfce-stellar-tile.png b/backdrops/xfce-stellar-tile.png
deleted file mode 100644
index 3ba6b46..000
Binary files a/backdrops/xfce-stellar-tile.png and /dev/null differ
diff --git a/backdrops/xfce-stripes.png b/backdrops/xfce-stripes.png
deleted file mode 100644
index 587fb55..000
Binary files a/backdrops/xfce-stripes.png and /dev/null differ
diff --git a/backdrops/xfce-turbulence.png b/backdrops/xfce-turbulence.png
deleted file mode 100644
index fec4e94..000
Binary files a/backdrops/xfce-turbulence.png and /dev/null differ
diff --git a/backdrops/xfce4gradientcurve.png b/backdrops/xfce4gradientcurve.png
deleted file mode 100644
index 5cc5762..000
Binary files a/backdrops/xfce4gradientcurve.png and /dev/null differ
diff --git a/backdrops/xfce4logo.png b/backdrops/xfce4logo.png
deleted file mode 100644
index 606013c..000
Binary files a/backdrops/xfce4logo.png and /dev/null differ
diff --git a/backgrounds/Makefile.am b/backgrounds/Makefile.am
new file mode 100644
index 000..dfaf0ca
--- /dev/null
+++ b/backgrounds/Makefile.am
@@ -0,0 +1,8 @@
+# backdrops/Makefile.am
+#
+
+backgroundsdir = $(datadir)/backgrounds/xfce
+
+backgrounds_DATA = xfce-blue.jpg
+
+EXTRA_DIST = $(backdrops_DATA)
diff --git a/backgrounds/xfce-blue.jpg b/backgrounds/xfce-blue.jpg
new file mode 100644
index 000..fd962e7
Binary files /dev/null and b/backgrounds/xfce-blue.jpg differ
diff --git a/common/xfdesktop-common.h b/common/xfdesktop-common.h
index 151487e..df767f0 100644
--- a/common/xfdesktop-common.h
+++ b/common/xfdesktop-common.h
@@ -32,7 +32,7 @@
 #include 
 
 #define XFDESKTOP_CHANNEL"xfce4-desktop"
-#define DEFAULT_BACKDROP DATADIR "/xfce4/backdrops/xfce-stripes.png"
+#define DEFAULT_BACKDROP DATADIR "/backgrounds/xfce/xfce-blue.jpg"
 #define DEFAULT_BACKDROP_LIST"xfce4/desktop/backdrop.list"
 #define DEFAULT_ICON_FONT_SIZE   12
 #define DEFAULT_ICON_SIZE32
diff --git a/configure.ac.in b/configure.ac.in
index f9300fe..0ddd399 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -19

[Xfce4-commits] l10n: Updated Ukrainian (uk) translation to 63%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 7efd98d970b066db36bc70705e1bed32c78f2619 (commit)
   from 4c1f4a0e0b2e5dc9d42750201a692e7ebfa37df0 (commit)

commit 7efd98d970b066db36bc70705e1bed32c78f2619
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:55:52 2012 +0200

l10n: Updated Ukrainian (uk) translation to 63%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index 6f2b341..265c1a8 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -156,7 +156,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:395
 msgid "_Expand"
-msgstr ""
+msgstr "_Розширити"
 
 #: ../panel-plugin/embed-dialogs.c:396
 msgid "Use up all available panel space"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Ukrainian (uk) translation to 60%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 4c1f4a0e0b2e5dc9d42750201a692e7ebfa37df0 (commit)
   from 54a030bb5fbef30e03fa1c88e5f4662b709c98e1 (commit)

commit 4c1f4a0e0b2e5dc9d42750201a692e7ebfa37df0
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:54:31 2012 +0200

l10n: Updated Ukrainian (uk) translation to 60%

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

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

 po/uk.po |   40 +++-
 1 files changed, 19 insertions(+), 21 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index d5f3f95..6f2b341 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -2,7 +2,7 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: \n"
@@ -11,17 +11,15 @@ msgstr ""
 "PO-Revision-Date: 2010-09-30 11:06+0200\n"
 "Last-Translator: Yarema akaKnedlyk \n"
 "Language-Team: Ukrainian \n"
-"Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: uk\n"
 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
 
-
-
 #: ../panel-plugin/embed.c:48
 msgid "Embed"
-msgstr ""
+msgstr "Вставка"
 
 #. pop out menu item, not shown by default
 #: ../panel-plugin/embed.c:244
@@ -31,7 +29,7 @@ msgstr ""
 #. embed menu item, shown by default.
 #: ../panel-plugin/embed.c:249
 msgid "_Embed"
-msgstr ""
+msgstr "_Вставка"
 
 #. focus menu item, not shown by default
 #: ../panel-plugin/embed.c:255
@@ -41,23 +39,23 @@ msgstr "_Фокус"
 #: ../panel-plugin/embed-dialogs.c:51
 #, c-format
 msgid "Unable to open the following url: %s"
-msgstr ""
+msgstr "Неможливо відкрити наступну адресу: %s"
 
 #: ../panel-plugin/embed-dialogs.c:100
 msgid "Input is valid"
-msgstr ""
+msgstr "Ввід правильний"
 
 #: ../panel-plugin/embed-dialogs.c:105
 msgid "Input is invalid"
-msgstr ""
+msgstr "Ввід неправильний"
 
 #: ../panel-plugin/embed-dialogs.c:317 ../panel-plugin/embed.desktop.in.h:1
 msgid "Embed Plugin"
-msgstr ""
+msgstr "Додаток вставки"
 
 #: ../panel-plugin/embed-dialogs.c:326
 msgid "Application Launching"
-msgstr ""
+msgstr "Програма запускається"
 
 #: ../panel-plugin/embed-dialogs.c:328
 #, c-format
@@ -77,7 +75,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:339
 msgid "L_aunch command"
-msgstr ""
+msgstr "Команда _запуску"
 
 #. poll_delay
 #. No UI element. Generally polling is unnecessary, unless you have a very
@@ -85,7 +83,7 @@ msgstr ""
 #. * identifiable when it is mapped.
 #: ../panel-plugin/embed-dialogs.c:348
 msgid "Selection Criteria"
-msgstr ""
+msgstr "Критерії вибору"
 
 #: ../panel-plugin/embed-dialogs.c:350
 msgid ""
@@ -95,7 +93,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:354
 msgid "_Process name"
-msgstr ""
+msgstr "_Назва процесу"
 
 #: ../panel-plugin/embed-dialogs.c:355
 msgid ""
@@ -105,7 +103,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:361
 msgid "_Window class"
-msgstr ""
+msgstr "_Клас вікна"
 
 #: ../panel-plugin/embed-dialogs.c:362
 msgid ""
@@ -115,7 +113,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:368
 msgid "Window _title"
-msgstr ""
+msgstr "Назва _вікна"
 
 #: ../panel-plugin/embed-dialogs.c:369
 msgid ""
@@ -125,7 +123,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:373
 msgid "Display"
-msgstr ""
+msgstr "Дисплей"
 
 #: ../panel-plugin/embed-dialogs.c:376
 #, c-format
@@ -136,19 +134,19 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:379
 msgid "_Label format"
-msgstr ""
+msgstr "_Формат мітки"
 
 #: ../panel-plugin/embed-dialogs.c:384
 msgid "Label _font"
-msgstr ""
+msgstr "_Шрифт мітки"
 
 #: ../panel-plugin/embed-dialogs.c:385
 msgid "Choose the label font"
-msgstr ""
+msgstr "Виберіть шрифт мітки"
 
 #: ../panel-plugin/embed-dialogs.c:389
 msgid "Minimum _size (px)"
-msgstr ""
+msgstr "Найменший _розмір (пкс)"
 
 #: ../panel-plugin/embed-dialogs.c:390
 msgid ""
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Ukrainian translation

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 54a030bb5fbef30e03fa1c88e5f4662b709c98e1 (commit)
   from 7b9cff20efc1db59114ab97e4c35ccf971c7c7ad (commit)

commit 54a030bb5fbef30e03fa1c88e5f4662b709c98e1
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:49:49 2012 +0200

l10n: Ukrainian translation

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

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

 po/{da.po => uk.po} |   74 ++
 1 files changed, 38 insertions(+), 36 deletions(-)

diff --git a/po/da.po b/po/uk.po
similarity index 73%
copy from po/da.po
copy to po/uk.po
index f607b97..d5f3f95 100644
--- a/po/da.po
+++ b/po/uk.po
@@ -1,61 +1,63 @@
-# Xfce4-embed-plugin.
-# Copyright (C) 2011 David Schneider 
-# This file is distributed under the same license as the Xfce4-embed-plugin 
package.
-# Per Kongstad , 2012.
-# 
-#, fuzzy
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
 msgid ""
 msgstr ""
-"Project-Id-Version: 0.9.0\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-10 11:00+\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Per Kongstad \n"
-"Language-Team: Danish \n"
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-12 13:54+\n"
+"PO-Revision-Date: 2010-09-30 11:06+0200\n"
+"Last-Translator: Yarema akaKnedlyk \n"
+"Language-Team: Ukrainian \n"
+"Language: uk\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"
-"Language: Danish\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+
 
 #: ../panel-plugin/embed.c:48
 msgid "Embed"
-msgstr "Indbyg"
+msgstr ""
 
 #. pop out menu item, not shown by default
 #: ../panel-plugin/embed.c:244
 msgid "Pop _Out"
-msgstr "Pop _op"
+msgstr ""
 
 #. embed menu item, shown by default.
 #: ../panel-plugin/embed.c:249
 msgid "_Embed"
-msgstr "_Indbyg"
+msgstr ""
 
 #. focus menu item, not shown by default
 #: ../panel-plugin/embed.c:255
 msgid "_Focus"
-msgstr "_Fokus"
+msgstr "_Фокус"
 
 #: ../panel-plugin/embed-dialogs.c:51
 #, c-format
 msgid "Unable to open the following url: %s"
-msgstr "Kunne ikke åbne den følgende url: %s"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:100
 msgid "Input is valid"
-msgstr "Indtastning er gyldig"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:105
 msgid "Input is invalid"
-msgstr "Indtastning er ugyldig"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:317 ../panel-plugin/embed.desktop.in.h:1
 msgid "Embed Plugin"
-msgstr "Udvidelsesmodul indbyg"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:326
 msgid "Application Launching"
-msgstr "Start af programmer"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:328
 #, c-format
@@ -75,7 +77,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:339
 msgid "L_aunch command"
-msgstr "S_tartkommando"
+msgstr ""
 
 #. poll_delay
 #. No UI element. Generally polling is unnecessary, unless you have a very
@@ -83,7 +85,7 @@ msgstr "S_tartkommando"
 #. * identifiable when it is mapped.
 #: ../panel-plugin/embed-dialogs.c:348
 msgid "Selection Criteria"
-msgstr "Udvælgeseskriteria"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:350
 msgid ""
@@ -93,7 +95,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:354
 msgid "_Process name"
-msgstr "_Procesnavn"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:355
 msgid ""
@@ -103,7 +105,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:361
 msgid "_Window class"
-msgstr "_Vindueklasse"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:362
 msgid ""
@@ -113,7 +115,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:368
 msgid "Window _title"
-msgstr "Vindue_titel"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:369
 msgid ""
@@ -123,7 +125,7 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:373
 msgid "Display"
-msgstr "Vis"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:376
 #, c-format
@@ -134,19 +136,19 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:379
 msgid "_Label format"
-msgstr "_Etiketformat"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:384
 msgid "Label _font"
-msgstr "Etiket_skrifttype"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:385
 msgid "Choose the label font"
-msgstr "Vælg etiketskrifttypen"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:389
 msgid "Minimum _size (px)"
-msgstr "Minimum_størrelse (piksel)"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:390
 msgid ""
@@ -156,12 +158,12 @@ msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:395
 msgid "_Expand"
-msgstr "_Udvid"
+msgstr ""
 
 #: ../panel-plugin/embed-dialogs.c:396
 msgid "Use up all available panel space"
-msgstr "Brug all tilgængelig panelplads"
+msgstr ""
 
 #: ../panel-plugin/embed.desktop.in.h:2
 msgid "Embeds an arbitrary window into the panel"
-msgstr "I

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to d4106b0155bee5a9e6dc07e33d08add21e0b0acc (commit)
   from 334536af4a160d7d5bb1fba562fb454dbded43d3 (commit)

commit d4106b0155bee5a9e6dc07e33d08add21e0b0acc
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:45:42 2012 +0200

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index 0cc2973..f9487fb 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2003-2005 Benedikt Meurer.
 # This file is distributed under the same license as the xfce4-wavelan-plugin 
package.
 # Dmitry Nikitin , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-wavelan-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 23:00+0200\n"
+"POT-Creation-Date: 2012-04-12 11:00+\n"
 "PO-Revision-Date: 2008-12-04 10:57+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
-"Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: uk\n"
 "X-Generator: KBabel 1.11.4\n"
 
 #: ../panel-plugin/wavelan.c:153
@@ -59,12 +59,12 @@ msgstr "Увімкнути якість сигналу з допомогою к
 
 #: ../panel-plugin/wavelan.c:608
 msgid "Show icon"
-msgstr ""
+msgstr "Показати іконку"
 
-#: ../panel-plugin/wavelan.c:671 ../panel-plugin/wavelan.desktop.in.h:2
+#: ../panel-plugin/wavelan.c:671 ../panel-plugin/wavelan.desktop.in.h:1
 msgid "View the status of a wireless network"
 msgstr "Переглянути статус бездротової мережі"
 
-#: ../panel-plugin/wavelan.desktop.in.h:1
+#: ../panel-plugin/wavelan.desktop.in.h:2
 msgid "Wavelan"
 msgstr "Бездротова мережа"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to f71808ea9833ff6ecd28373c6f6b69b98ba7bd9e (commit)
   from 21d0145f49ec5d519d60d8a429ec1beec290a0d9 (commit)

commit f71808ea9833ff6ecd28373c6f6b69b98ba7bd9e
Author: Sergio Marques 
Date:   Thu Apr 12 17:43:01 2012 +0200

l10n: Updated Portuguese (pt) translation to 100%

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

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

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

diff --git a/po/pt.po b/po/pt.po
index c3a1284..16b9e39 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2,40 +2,32 @@
 # Copyright (C) 2010 THE transd'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the transd package.
 # Sérgio Marques  2010
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: transd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-12 08:09+\n"
-"PO-Revision-Date: 2012-01-12 12:57-\n"
+"POT-Creation-Date: 2012-04-12 13:54+\n"
+"PO-Revision-Date: 2012-04-12 16:42-\n"
 "Last-Translator: Sérgio Marques \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"
 "X-Poedit-Language: Portuguese\n"
 "X-Poedit-Country: Portugal\n"
 
 #: ../src/transd.c:192
 #, c-format
-msgid ""
-"Transd now uses a new configuration file format.  Please see the README for "
-"details.  Transd will now exit.\n"
-msgstr ""
-"O Transd utiliza um novo formato de configuração. Por favor, veja o README "
-"para detalhes. O Transd vai terminar."
+msgid "Transd now uses a new configuration file format.  Please see the README 
for details.  Transd will now exit.\n"
+msgstr "O Transd utiliza um novo formato de configuração. Por favor, consulte 
o README para detalhes. O Transd vai terminar.\n"
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
-msgstr ""
-"Um serviço para vigiar e definir a transparência das janelas com base em "
-"regras"
+msgstr "Um serviço que monitoriza e define a transparência das janelas com 
base em regras"
 
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "Serviço de transparência"
 
-#~ msgid "Configuration format changed."
-#~ msgstr "Alterou o formato da configuração."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 39b82bae46f962d29ba69b7ee0a894bef7034391 (commit)
   from 5573a76e0356d01e3a6f65caf3f5957d466d8758 (commit)

commit 39b82bae46f962d29ba69b7ee0a894bef7034391
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:31:35 2012 +0200

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index c553403..3337cd5 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,7 +1,7 @@
 # Translation of xfce4-diskperf-plugin to Ukrainian
 # Copyright (C) 2007 Dmitry Nikitin
 # This file is distributed under the same license as the xfce4-diskperf-plugi 
package.
-#
+# 
 # Dmitry Nikitin , 2007.
 msgid ""
 msgstr ""
@@ -11,13 +11,12 @@ msgstr ""
 "PO-Revision-Date: 2007-03-08 02:15+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
-"Language: uk\n"
 "MIME-Version: 1.0\n"
 "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%100<10 || 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%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: ../panel-plugin/config_gui.c:101
 msgid "Device"
@@ -186,11 +185,11 @@ msgstr ""
 msgid ""
 "Diskperf monitor displays instantaneous disk I/O transfer rates and busy "
 "times"
-msgstr ""
+msgstr "Монітор Diskperf показує миттєву швидкість передачі даних вводу/виводу 
і час роботи"
 
 #: ../panel-plugin/main.c:910
 msgid "Copyright (c) 2003, 2004 Roger Seguin"
-msgstr ""
+msgstr "Всі права застережено (c) 2003, 2004 Roger Seguin"
 
 #: ../panel-plugin/main.c:944 ../panel-plugin/diskperf.desktop.in.h:1
 msgid "Disk Performance Monitor"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Added Norwegian Nynorsk translation.

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to b4bf998ad1e096e0977e94850ed8cedcb7a69cfb (commit)
   from bb3f812997c08dc633779b3713a834cff8ab9cea (commit)

commit b4bf998ad1e096e0977e94850ed8cedcb7a69cfb
Author: Eivind Ødegård 
Date:   Thu Apr 12 17:27:45 2012 +0200

l10n: Added Norwegian Nynorsk translation.

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

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

 po/{zh_TW.po => nn.po} |  388 
 1 files changed, 195 insertions(+), 193 deletions(-)

diff --git a/po/zh_TW.po b/po/nn.po
similarity index 72%
copy from po/zh_TW.po
copy to po/nn.po
index 6cd653c..d78fcda 100644
--- a/po/zh_TW.po
+++ b/po/nn.po
@@ -1,25 +1,27 @@
-# Traditional Chinese translation of Parole media player.
-# Copyright (C) 2011 THE parole'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the parole package.
-# Cheng-Chia Tseng , 2011.
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: parole master\n"
+"Project-Id-Version: Parole\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-19 14:54+\n"
-"PO-Revision-Date: 2012-01-19 23:35+0800\n"
-"Last-Translator: Cheng-Chia Tseng \n"
-"Language-Team: chinese-l10n \n"
+"POT-Creation-Date: 2012-02-09 20:42+\n"
+"PO-Revision-Date: 2012-04-12 17:26+0100\n"
+"Last-Translator: Eivind Ødegård \n"
+"Language-Team: nn_NO \n"
 "Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
+"Plural-Forms: nplurals=2; plural=(n!=1)\n"
+"X-Poedit-Language: Norwegian Nynorsk\n"
+"X-Poedit-Country: NORWAY\n"
 
 #: ../data/interfaces/parole.ui.h:1
 msgid "16:9 (Widescreen)"
-msgstr "16:9 (寬螢幕)"
+msgstr "16:9 (breiskjerm)"
 
 #: ../data/interfaces/parole.ui.h:2
 msgid "20:9 (DVB)"
@@ -27,19 +29,19 @@ msgstr "20:9 (DVB)"
 
 #: ../data/interfaces/parole.ui.h:3
 msgid "4:3 (TV)"
-msgstr "4:3 (TV)"
+msgstr "4:3 (fjernsyn)"
 
 #: ../data/interfaces/parole.ui.h:4
 msgid "Aspect Ratio"
-msgstr "長寬比"
+msgstr "Sideforhold"
 
 #: ../data/interfaces/parole.ui.h:5
 msgid "Auto"
-msgstr "自動"
+msgstr "Auto"
 
 #: ../data/interfaces/parole.ui.h:6
 msgid "Chapter Menu"
-msgstr "章選單"
+msgstr "Kapittelmeny"
 
 #: ../data/interfaces/parole.ui.h:7
 msgid "DVD"
@@ -47,227 +49,227 @@ msgstr "DVD"
 
 #: ../data/interfaces/parole.ui.h:8
 msgid "DVD Menu"
-msgstr "DVD 選單"
+msgstr "DVD-meny"
 
 #: ../data/interfaces/parole.ui.h:9
 msgid "From ISO image"
-msgstr "從 ISO 映像檔"
+msgstr "Frå ISO-bilete"
 
 #: ../data/interfaces/parole.ui.h:10
 msgid "Media player"
-msgstr "媒體播放器"
+msgstr "Mediaspelar"
 
 #: ../data/interfaces/parole.ui.h:11
 msgid "Mute"
-msgstr "靜音"
+msgstr "Demp"
 
 #: ../data/interfaces/parole.ui.h:12
 #: ../src/parole-player.c:1215
 #: ../src/parole-disc-menu.c:113
 msgid "Next Chapter"
-msgstr "下一章"
+msgstr "Neste kapitlet"
 
 #: ../data/interfaces/parole.ui.h:13
 msgid "None"
-msgstr "無"
+msgstr "Ingen"
 
 #: ../data/interfaces/parole.ui.h:14
 #: ../src/parole-about.c:74
 #: ../plugins/window-title/window-title-provider.c:58
 msgid "Parole Media Player"
-msgstr "Parole 媒體播放器"
+msgstr "Mediaspelaren Parole"
 
 #: ../data/interfaces/parole.ui.h:15
 msgid "Plugins"
-msgstr "插件"
+msgstr "Programtillegg"
 
 #: ../data/interfaces/parole.ui.h:16
 #: ../src/parole-player.c:1227
 #: ../src/parole-disc-menu.c:114
 msgid "Previous Chapter"
-msgstr "前一章"
+msgstr "Førre kapitlet"
 
 #: ../data/interfaces/parole.ui.h:17
 #: ../src/parole-medialist.c:1264
 msgid "Repeat"
-msgstr "返復"
+msgstr "Gjenta"
 
 #: ../data/interfaces/parole.ui.h:18
 msgid "Select Track"
-msgstr "選取軌道"
+msgstr "Vel spor"
 
 #: ../data/interfaces/parole.ui.h:19
 #: ../src/parole-medialist.c:1280
 msgid "Shuffle"
-msgstr "隨機"
+msgstr "Stokk om"
 
 #: ../data/interfaces/parole.ui.h:20
 msgid "Sound"
-msgstr "音效"
+msgstr "Lyd"
 
 #: ../data/interfaces/parole.ui.h:21
 msgid "Square"
-msgstr "正方"
+msgstr "Firkanta"
 
 #: ../data/interfaces/parole.ui.h:22
 msgid "Volume Down"
-msgstr "音量降低"
+msgstr "Lyd ned"
 
 #: ../data/interfaces/parole.ui.h:23
 msgid "Volume Up"
-msgstr "音量提高"
+msgstr "Lyd opp"
 
 #: ../data/interfaces/parole.ui.h:24
 msgid "_Edit"
-msgstr "編輯(_E)"
+msgstr "_Rediger"
 
 #: ../data/interfaces/parole.ui.h:25
 msgid "_Help"
-msgstr "幫助(_H)"
+msgstr "_Hjelp"
 
 #: ../data/interfaces/parole.ui.h:26
 msgid "_Media"
-msgstr "媒體(_M)"
+msgstr "_Media"
 
 #: ../data/interfaces/parole.ui.h:27
 msgid "_Open location"
-msgstr "開啟位置(_O)"
+msgstr "_Opna plassering"
 
 #: ../data/interfaces/parole.ui.h:28
 msgid "_View"
-msgstr "檢視(_V)"
+msgstr "_Vis"
 
 #: ../data/interfaces/mediachooser.ui.h:1
 msgid "Add"
-msgstr "加入"
+msgstr "Legg til"
 
 #: ../data/interfaces/mediachooser.ui.h:2
 msgid "Open media files"
-msgst

[Xfce4-commits] l10n: Updated Lithuanian (lt) translation to None%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 21d0145f49ec5d519d60d8a429ec1beec290a0d9 (commit)
   from 57a11c3b42d88990379bc1fc06f62aebdcaa6ff3 (commit)

commit 21d0145f49ec5d519d60d8a429ec1beec290a0d9
Author: Algimantas Margevičius 
Date:   Thu Apr 12 17:26:07 2012 +0200

l10n: Updated Lithuanian (lt) translation to None%

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

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

 po/lt.po |   21 ++---
 1 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/po/lt.po b/po/lt.po
index 3ac9a10..9b2e99e 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,30 +3,26 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
 # Algimantas Margevičius , 2012.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: transd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-14 10:54+\n"
+"POT-Creation-Date: 2012-04-12 13:54+\n"
 "PO-Revision-Date: 2012-01-14 18:37+0200\n"
 "Last-Translator: Algimantas Margevičius \n"
 "Language-Team: Lietuvių <>\n"
-"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bits\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2)\n"
-
-#: ../src/transd.c:116
-msgid "Configuration format changed."
-msgstr "Konfigūracijos formatas pasikeitė."
+"Language: \n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
(n%100<10 || n%100>=20) ? 1 : 2)\n"
 
-#: ../src/transd.c:117
+#: ../src/transd.c:192
+#, c-format
 msgid ""
 "Transd now uses a new configuration file format.  Please see the README for "
-"details.  Transd will now exit."
+"details.  Transd will now exit.\n"
 msgstr ""
 "Transd dabar naudoja naują konfigūracijos formatą.  Peržiūrėkite README "
 "failą išsamesnei informacijai.  Transd dabar užsidarys."
@@ -40,3 +36,6 @@ msgstr ""
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "Permatomumo demonas"
+
+#~ msgid "Configuration format changed."
+#~ msgstr "Konfigūracijos formatas pasikeitė."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Lithuanian (lt) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 8d58761e147eff74170b5444ca863b53128f9071 (commit)
   from 2b92910b472d458e20e920c8ee56cd6ec0710303 (commit)

commit 8d58761e147eff74170b5444ca863b53128f9071
Author: Algimantas Margevičius 
Date:   Thu Apr 12 17:25:03 2012 +0200

l10n: Updated Lithuanian (lt) translation to 100%

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

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

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

diff --git a/po/lt.po b/po/lt.po
index 2012050..c4df0bc 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -139,18 +139,16 @@ msgid "_Fullscreen"
 msgstr "_Visas ekranas"
 
 #: ../src/main_window.c:366
-#, fuzzy
 msgid "Switch to fullscreen"
-msgstr "Paleisti viso ekrano režimu"
+msgstr "Perjungti į viso ekrano režimą"
 
 #: ../src/main_window.c:367
 msgid "_Leave Fullscreen"
 msgstr "_Palikti viso ekrano režimą"
 
 #: ../src/main_window.c:367
-#, fuzzy
 msgid "Leave Fullscreen"
-msgstr "_Palikti viso ekrano režimą"
+msgstr "Palikti viso ekrano režimą"
 
 #: ../src/main_window.c:368
 msgid "_Set as Wallpaper"
@@ -166,18 +164,16 @@ msgid "Zoom _In"
 msgstr "Pa_didinti"
 
 #: ../src/main_window.c:371
-#, fuzzy
 msgid "Zoom in"
-msgstr "Pa_didinti"
+msgstr "Padidinti"
 
 #: ../src/main_window.c:372
 msgid "Zoom _Out"
 msgstr "Su_mažinti"
 
 #: ../src/main_window.c:372
-#, fuzzy
 msgid "Zoom out"
-msgstr "Su_mažinti"
+msgstr "Sumažinti"
 
 #: ../src/main_window.c:373
 msgid "Zoom _Fit"
@@ -218,36 +214,32 @@ msgid "_Forward"
 msgstr "Pir_myn"
 
 #: ../src/main_window.c:381
-#, fuzzy
 msgid "Next image"
-msgstr "Atverti paveikslėlį"
+msgstr "Sekantis paveikslėlis"
 
 #: ../src/main_window.c:382
 msgid "_Back"
 msgstr "A_tgal"
 
 #: ../src/main_window.c:382
-#, fuzzy
 msgid "Previous image"
-msgstr "Užverti šį paveikslėlį"
+msgstr "Ankstesnis paveikslėlis"
 
 #: ../src/main_window.c:383
 msgid "_First"
 msgstr "_Pirmas"
 
 #: ../src/main_window.c:383
-#, fuzzy
 msgid "First image"
-msgstr "Redaguoti šį paveikslėlį"
+msgstr "Pirmas paveikslėlis"
 
 #: ../src/main_window.c:384
 msgid "_Last"
 msgstr "Pa_skutinis"
 
 #: ../src/main_window.c:384
-#, fuzzy
 msgid "Last image"
-msgstr "Užverti šį paveikslėlį"
+msgstr "Paskutinis paveikslėlis"
 
 #. Help Menu
 #: ../src/main_window.c:386
@@ -491,9 +483,8 @@ msgid "Recommended Applications"
 msgstr "Rekomenduojamos programos"
 
 #: ../src/main_window.c:3503
-#, fuzzy
 msgid "Other Applications"
-msgstr "Atverti su _kita programa"
+msgstr "Kitos programos"
 
 #: ../src/icon_bar.c:345
 msgid "Orientation"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Lithuanian (lt) translation to 94%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 2b92910b472d458e20e920c8ee56cd6ec0710303 (commit)
   from c4927ca1eb91f479ef26f8cd127397878f75d165 (commit)

commit 2b92910b472d458e20e920c8ee56cd6ec0710303
Author: Algimantas Margevičius 
Date:   Thu Apr 12 17:22:58 2012 +0200

l10n: Updated Lithuanian (lt) translation to 94%

New status: 164 messages complete with 9 fuzzies and 0 untranslated.

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

 po/lt.po |  239 ++
 1 files changed, 148 insertions(+), 91 deletions(-)

diff --git a/po/lt.po b/po/lt.po
index 31bd1d0..2012050 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ristretto\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2012-04-03 04:27+\n"
+"POT-Creation-Date: 2012-04-12 13:09+\n"
 "PO-Revision-Date: 2012-01-28 18:13+0200\n"
 "Last-Translator: Algimantas Margevičius \n"
 "Language-Team: Lietuvių <>\n"
@@ -52,310 +52,358 @@ msgid "Image Viewer"
 msgstr "Paveikslėlių peržiūros programa"
 
 #. File Menu
-#: ../src/main_window.c:335
+#: ../src/main_window.c:350
 msgid "_File"
 msgstr "_Failas"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:351
 msgid "_Open"
 msgstr "_Atverti"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:351
 msgid "Open an image"
 msgstr "Atverti paveikslėlį"
 
-#: ../src/main_window.c:337
+#: ../src/main_window.c:352
 msgid "_Save copy"
 msgstr "_Išsaugoti kopiją"
 
-#: ../src/main_window.c:337
+#: ../src/main_window.c:352
 msgid "Save a copy of the image"
 msgstr "Išsaugoti paveikslėlio kopiją"
 
-#: ../src/main_window.c:338
+#: ../src/main_window.c:353
 msgid "_Properties"
 msgstr "_Savybės"
 
-#: ../src/main_window.c:338
+#: ../src/main_window.c:353
 msgid "Show file properties"
 msgstr "Rodyti paveikslėlio savybes"
 
 #. Edit Menu
-#: ../src/main_window.c:339 ../src/main_window.c:343
+#: ../src/main_window.c:354 ../src/main_window.c:358
 msgid "_Edit"
 msgstr "_Keisti"
 
-#: ../src/main_window.c:339
+#: ../src/main_window.c:354
 msgid "Edit this image"
 msgstr "Redaguoti šį paveikslėlį"
 
-#: ../src/main_window.c:340
+#: ../src/main_window.c:355
 msgid "_Close"
 msgstr "_Užverti"
 
-#: ../src/main_window.c:340
+#: ../src/main_window.c:355
 msgid "Close this image"
 msgstr "Užverti šį paveikslėlį"
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:356
 msgid "_Quit"
 msgstr "I_šeiti"
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:356
 msgid "Quit Ristretto"
 msgstr "Išeiti Ristretto"
 
-#: ../src/main_window.c:344
+#: ../src/main_window.c:359
 msgid "_Open with..."
 msgstr "_Atverti su..."
 
-#: ../src/main_window.c:345
+#: ../src/main_window.c:360
 msgid "_Sorting"
 msgstr "_Rikiavimas"
 
-#: ../src/main_window.c:346
+#: ../src/main_window.c:361
 msgid "_Delete"
 msgstr "Išt_rinti"
 
-#: ../src/main_window.c:346
+#: ../src/main_window.c:361
 msgid "Delete this image from disk"
 msgstr "Ištrinti šį paveikslėlį iš disko"
 
-#: ../src/main_window.c:347
+#: ../src/main_window.c:362
 msgid "_Clear private data"
 msgstr "_Išvalyti duomenų saugyklą"
 
-#: ../src/main_window.c:348
+#: ../src/main_window.c:363
 msgid "_Preferences"
 msgstr "_Nustatymai"
 
 #. View Menu
-#: ../src/main_window.c:350
+#: ../src/main_window.c:365
 msgid "_View"
 msgstr "R_odymas"
 
-#: ../src/main_window.c:351
+#: ../src/main_window.c:366
 msgid "_Fullscreen"
 msgstr "_Visas ekranas"
 
-#: ../src/main_window.c:352
+#: ../src/main_window.c:366
+#, fuzzy
+msgid "Switch to fullscreen"
+msgstr "Paleisti viso ekrano režimu"
+
+#: ../src/main_window.c:367
 msgid "_Leave Fullscreen"
 msgstr "_Palikti viso ekrano režimą"
 
-#: ../src/main_window.c:353
+#: ../src/main_window.c:367
+#, fuzzy
+msgid "Leave Fullscreen"
+msgstr "_Palikti viso ekrano režimą"
+
+#: ../src/main_window.c:368
 msgid "_Set as Wallpaper"
 msgstr "_Nustatyti kaip darbastalio foną"
 
 #. Zoom submenu
-#: ../src/main_window.c:355
+#: ../src/main_window.c:370
 msgid "_Zoom"
 msgstr "Keisti _mastelį"
 
-#: ../src/main_window.c:356
+#: ../src/main_window.c:371
 msgid "Zoom _In"
 msgstr "Pa_didinti"
 
-#: ../src/main_window.c:357
+#: ../src/main_window.c:371
+#, fuzzy
+msgid "Zoom in"
+msgstr "Pa_didinti"
+
+#: ../src/main_window.c:372
 msgid "Zoom _Out"
 msgstr "Su_mažinti"
 
-#: ../src/main_window.c:358
+#: ../src/main_window.c:372
+#, fuzzy
+msgid "Zoom out"
+msgstr "Su_mažinti"
+
+#: ../src/main_window.c:373
 msgid "Zoom _Fit"
 msgstr "_Priderinti prie lango"
 
-#: ../src/main_window.c:359
+#: ../src/main_window.c:373
+msgid "Zoom to fit window"
+msgstr "Keisti mastelį iki lango dydžio"
+
+#: ../src/main_window.c:374
 msgid "_Normal Size"
 msgstr "_Tikras dydis"
 
+#: ../src/main_window.c:374
+msgid "Zoom to 100%"
+msgstr "Tikro dydžio"
+
 #. Rotation submenu
-#: ../src/main_window.c:361
+#: ../src/main_window.c:376
 msgid "_Rotation"
 msgstr "_Pasukimas"
 
-#: ../src/main_window.c:362
+#: ../src/main_window.

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to c4927ca1eb91f479ef26f8cd127397878f75d165 (commit)
   from 6a518f407e1ad4cd08a5ef62b85f468bae87883e (commit)

commit c4927ca1eb91f479ef26f8cd127397878f75d165
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:18:20 2012 +0200

l10n: Updated Ukrainian (uk) translation to 100%

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

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

 po/uk.po |  239 --
 1 files changed, 139 insertions(+), 100 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index a2c4d69..4c13980 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ristretto\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2012-04-05 08:39+\n"
+"POT-Creation-Date: 2012-04-12 13:09+\n"
 "PO-Revision-Date: 2008-11-17 11:15+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
@@ -49,310 +49,350 @@ msgid "Image Viewer"
 msgstr "Переглядач зображень"
 
 #. File Menu
-#: ../src/main_window.c:335
+#: ../src/main_window.c:350
 msgid "_File"
 msgstr "_Файл"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:351
 msgid "_Open"
 msgstr "_Відкрити"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:351
 msgid "Open an image"
 msgstr "Відкрити зображення"
 
-#: ../src/main_window.c:337
+#: ../src/main_window.c:352
 msgid "_Save copy"
 msgstr "Зберегти коп_ію"
 
-#: ../src/main_window.c:337
+#: ../src/main_window.c:352
 msgid "Save a copy of the image"
 msgstr "Зберегти копію малюнка"
 
-#: ../src/main_window.c:338
+#: ../src/main_window.c:353
 msgid "_Properties"
 msgstr "_Властивості"
 
-#: ../src/main_window.c:338
+#: ../src/main_window.c:353
 msgid "Show file properties"
 msgstr "Показати властивості файлу"
 
 #. Edit Menu
-#: ../src/main_window.c:339 ../src/main_window.c:343
+#: ../src/main_window.c:354 ../src/main_window.c:358
 msgid "_Edit"
 msgstr "_Редагувати"
 
-#: ../src/main_window.c:339
+#: ../src/main_window.c:354
 msgid "Edit this image"
 msgstr "Редагувати малюнок"
 
-#: ../src/main_window.c:340
+#: ../src/main_window.c:355
 msgid "_Close"
 msgstr "_Закрити"
 
-#: ../src/main_window.c:340
+#: ../src/main_window.c:355
 msgid "Close this image"
 msgstr "Закрити малюнок"
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:356
 msgid "_Quit"
 msgstr "Ви_йти"
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:356
 msgid "Quit Ristretto"
 msgstr "Вийти з Ristretto"
 
-#: ../src/main_window.c:344
+#: ../src/main_window.c:359
 msgid "_Open with..."
 msgstr "_Відкрити з..."
 
-#: ../src/main_window.c:345
+#: ../src/main_window.c:360
 msgid "_Sorting"
 msgstr "_Сортування"
 
-#: ../src/main_window.c:346
+#: ../src/main_window.c:361
 msgid "_Delete"
 msgstr "_Видалити"
 
-#: ../src/main_window.c:346
+#: ../src/main_window.c:361
 msgid "Delete this image from disk"
 msgstr "Вилучити малюнок з диску"
 
-#: ../src/main_window.c:347
+#: ../src/main_window.c:362
 msgid "_Clear private data"
 msgstr "_Очистити приватні дані"
 
-#: ../src/main_window.c:348
+#: ../src/main_window.c:363
 msgid "_Preferences"
 msgstr "_Налаштування"
 
 #. View Menu
-#: ../src/main_window.c:350
+#: ../src/main_window.c:365
 msgid "_View"
 msgstr "_Перегляд"
 
-#: ../src/main_window.c:351
+#: ../src/main_window.c:366
 msgid "_Fullscreen"
 msgstr "Повний екр_ан"
 
-#: ../src/main_window.c:352
+#: ../src/main_window.c:366
+msgid "Switch to fullscreen"
+msgstr "Включити повноекранний режим"
+
+#: ../src/main_window.c:367
 msgid "_Leave Fullscreen"
 msgstr "Покинути повний ек_ран"
 
-#: ../src/main_window.c:353
+#: ../src/main_window.c:367
+msgid "Leave Fullscreen"
+msgstr "Покинути повноекранний режим"
+
+#: ../src/main_window.c:368
 msgid "_Set as Wallpaper"
 msgstr "Встановити як шпа_лери"
 
 #. Zoom submenu
-#: ../src/main_window.c:355
+#: ../src/main_window.c:370
 msgid "_Zoom"
 msgstr "_Масштаб"
 
-#: ../src/main_window.c:356
+#: ../src/main_window.c:371
 msgid "Zoom _In"
 msgstr "Збіль_шити"
 
-#: ../src/main_window.c:357
+#: ../src/main_window.c:371
+msgid "Zoom in"
+msgstr "Збільшити"
+
+#: ../src/main_window.c:372
 msgid "Zoom _Out"
 msgstr "З_меншити"
 
-#: ../src/main_window.c:358
+#: ../src/main_window.c:372
+msgid "Zoom out"
+msgstr "Зменшити"
+
+#: ../src/main_window.c:373
 msgid "Zoom _Fit"
 msgstr "Вмістити у вікн_о"
 
-#: ../src/main_window.c:359
+#: ../src/main_window.c:373
+msgid "Zoom to fit window"
+msgstr "Припасувати до розмірів вікна"
+
+#: ../src/main_window.c:374
 msgid "_Normal Size"
 msgstr "_Нормальний розмір"
 
+#: ../src/main_window.c:374
+msgid "Zoom to 100%"
+msgstr "Збільшити до 100%"
+
 #. Rotation submenu
-#: ../src/main_window.c:361
+#: ../src/main_window.c:376
 msgid "_Rotation"
 msgstr "_Обертання"
 
-#: ../src/main_window.c:362
+#: ../src/main_window.c:377
 msgid "Rotate _Right"
 msgstr "Повернути в_право"
 
-#: ../src/main_window.c:363
+#: ../src/main_windo

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 57a11c3b42d88990379bc1fc06f62aebdcaa6ff3 (commit)
   from a87adfa8361e215c532041c2a6505d8c84ca94d4 (commit)

commit 57a11c3b42d88990379bc1fc06f62aebdcaa6ff3
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:13:08 2012 +0200

l10n: Updated Ukrainian (uk) translation to 100%

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

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

 po/uk.po |   17 +
 1 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 8745583..eeac552 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,26 +8,24 @@ msgid ""
 msgstr ""
 "Project-Id-Version: transd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-30 04:04+\n"
+"POT-Creation-Date: 2012-04-12 13:54+\n"
 "PO-Revision-Date: 2010-09-30 11:06+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
+"Language: uk\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"
 
-#: ../src/transd.c:116
-msgid "Configuration format changed."
-msgstr "Формат конфігурації змінено."
+#: ../src/transd.c:192
 
-#: ../src/transd.c:117
 msgid ""
 "Transd now uses a new configuration file format.  Please see the README for "
-"details.  Transd will now exit."
+"details.  Transd will now exit.\n"
 msgstr ""
-"Transd зараз використовує новий формат файлу конфігурації.  Будь ласка "
-"гляньте README для деталей.  Transd завершує роботу."
+"Transd зараз використовує новий формат файлу конфігурації. Загляньте, будь 
ласка, " 
+"до файлу README для деталей.  Transd завершує роботу.\n"
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
@@ -38,3 +36,6 @@ msgstr ""
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "Демон Прозорості"
+
+#~ msgid "Configuration format changed."
+#~ msgstr "Формат конфігурації змінено."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 49f07f7141029d444da5d99414755b368b95bf1c (commit)
   from 12cb10acde57999af47cb6d2d032845a714bbf7a (commit)

commit 49f07f7141029d444da5d99414755b368b95bf1c
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:03:31 2012 +0200

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index 7007a97..91e15af 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-29 11:15+\n"
+"POT-Creation-Date: 2012-04-12 10:12+\n"
 "PO-Revision-Date: 2009-01-26 16:03+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
@@ -233,23 +233,24 @@ msgid "_Proceed"
 msgstr "_Виконати"
 
 #: ../settings/session-editor.c:212
-msgid "You might need to delete some files manually in "
-msgstr "Вам можливо потрібно вилучити деякі файли вручну в"
+#, c-format
+msgid "You might need to delete some files manually in \"%s\"."
+msgstr "Можливо Вам потрібно вилучити деякі файли вручну в \"%s\"."
 
-#: ../settings/session-editor.c:216
+#: ../settings/session-editor.c:215
 msgid "All Xfce cache files could not be cleared"
 msgstr "Всі файли кешу Xfce не можливо очистити"
 
-#: ../settings/session-editor.c:250
+#: ../settings/session-editor.c:249
 #, c-format
 msgid "Are you sure you want to terminate \"%s\"?"
 msgstr "Ви впевнені, що бажаєте завершити \"%s\"?"
 
-#: ../settings/session-editor.c:253 ../settings/session-editor.c:281
+#: ../settings/session-editor.c:252 ../settings/session-editor.c:280
 msgid "Terminate Program"
 msgstr "Завершити програму"
 
-#: ../settings/session-editor.c:255
+#: ../settings/session-editor.c:254
 msgid ""
 "The application will lose any unsaved state and will not be restarted in "
 "your next session."
@@ -257,32 +258,32 @@ msgstr ""
 "Програма втратить будь які незбережені зміни і не буде запускатись в "
 "наступному Вашому сеансі."
 
-#: ../settings/session-editor.c:257
+#: ../settings/session-editor.c:256
 #: ../settings/xfce4-session-settings.glade.h:40
 msgid "_Quit Program"
 msgstr "Ви_йти з програми"
 
-#: ../settings/session-editor.c:282
+#: ../settings/session-editor.c:281
 msgid "Unable to terminate program."
 msgstr "Неможливо завершити програму."
 
-#: ../settings/session-editor.c:460
+#: ../settings/session-editor.c:459
 msgid "(Unknown program)"
 msgstr "(Невідома програма)"
 
-#: ../settings/session-editor.c:680
+#: ../settings/session-editor.c:679
 msgid "Priority"
 msgstr "Пріоритет"
 
-#: ../settings/session-editor.c:688
+#: ../settings/session-editor.c:687
 msgid "PID"
 msgstr "PID"
 
-#: ../settings/session-editor.c:694
+#: ../settings/session-editor.c:693
 msgid "Program"
 msgstr "Програма"
 
-#: ../settings/session-editor.c:719
+#: ../settings/session-editor.c:718
 msgid "Restart Style"
 msgstr "Стиль перезавантаження"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 9287c66b8feb1c0e72c74a58a7f6dbdc29a8648e (commit)
   from d3381daf349c3bb89aa974dfdd02626b9f0044a7 (commit)

commit 9287c66b8feb1c0e72c74a58a7f6dbdc29a8648e
Author: Yarema aka Knedlyk 
Date:   Thu Apr 12 17:02:11 2012 +0200

l10n: Updated Ukrainian (uk) translation to 100%

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

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

 po/uk.po |  522 +++---
 1 files changed, 260 insertions(+), 262 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 927404f..8baa3a1 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,23 +1,22 @@
 # Ukrainian translation of xfwm4
 # Copyright (C) 2002-2006 The Xfce development team
 # This file is distributed under the same license as the xfwm4 package.
-#
+# 
 # Maxim Dziumanenko , 2003-2006.
 # Dmitry Nikitin , 2007.
 msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 18:54+0200\n"
+"POT-Creation-Date: 2012-04-12 12:03+\n"
 "PO-Revision-Date: 2009-02-24 20:24+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
-"Language: uk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Language: uk\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 "X-Generator: KBabel 1.11.4\n"
 
 #: ../helper-dialog/helper-dialog.c:84
@@ -85,238 +84,238 @@ msgid "Settings manager socket"
 msgstr "Сокет Менеджера властивостей"
 
 #: ../settings-dialogs/xfce-wm-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-dialog.glade.h:1
-msgid "Window Manager"
-msgstr "Менеджер вікон"
-
-#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:29
 msgid "Configure window behavior and shortcuts"
 msgstr "Налаштувати заголовок вікна і ярлик запуску"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:1
-msgid "Window Manager Tweaks"
-msgstr "Налаштування менеджера вікон"
+#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:48
+msgid "Window Manager"
+msgstr "Менеджер вікон"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:16
 msgid "Fine-tune window behaviour and effects"
 msgstr "Тонке налаштування заголовку вікна і ефектів"
 
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:36
+msgid "Window Manager Tweaks"
+msgstr "Налаштування менеджера вікон"
+
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
+msgid "Configure layout, names and margins"
+msgstr "Конфігурація розкладки, назв та полів"
+
+#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
 msgid "Workspaces"
 msgstr "Робочі області"
 
-#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:2
-msgid "Configure layout, names and margins"
-msgstr "Конфігурація розкладки, назв та полів"
+#: ../settings-dialogs/xfwm4-dialog.glade.h:1
+msgid "Box move and resize"
+msgstr "Переміщення та зміни розміру блоку"
+
+#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+msgid "Button layout"
+msgstr "Кнопка розкладки"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:3
-msgid "_Theme"
-msgstr "_Тема"
+msgid "Double click _action"
+msgstr "_Дія при подвійному клацанні"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:4
-msgid "Title fon_t"
-msgstr "_Шрифт заголовку"
+msgid "Focus model"
+msgstr "Модель фокусу"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:5
-msgid "Title _alignment"
-msgstr "_Вирівнювання заголовку"
+msgid "New window focus"
+msgstr "Фокус для нового вікна"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:6
-msgid "Click and drag the buttons to change the layout"
-msgstr "Клацніть та перетягніть кнопки, щоб змінити їх розкладку"
+msgid "Raise on click"
+msgstr "Підняти при клацанні"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:7
-msgid "Title"
-msgstr "Заголовок"
+msgid "Raise on focus"
+msgstr "Підняти при отримані фокусу"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:8
-msgid "The window title cannot be removed"
-msgstr "Неможливо видалити заголовок вікна"
+msgid "Title _alignment"
+msgstr "_Вирівнювання заголовку"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:9
-msgid "Active"
-msgstr "Активне вік

[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 4927897f1529c116d3a1b668d95a5f019901834a (commit)
   from 2802a59d8d6b5045179b8a55c74eb4121f931dbf (commit)

commit 4927897f1529c116d3a1b668d95a5f019901834a
Author: Jari Rahkonen 
Date:   Thu Apr 12 17:03:26 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |   18 +++---
 1 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index 8db1094..2544cd0 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
 # Finnish translations for xfce4-places-plugin package.
 # Copyright (C) 2007 Diego Ongaro .
 # This file is distributed under the same license as the xfce4-places-plugin 
package.
-# Jari Rahkonen , 2007-2008.
+# Jari Rahkonen , 2007-2012.
 # The original file was automatically generated based on the following:
 # ###
 # Finnish translations for Thunar package.
@@ -22,10 +22,10 @@
 # ###
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-places-plugin 0.9.991\n"
+"Project-Id-Version: xfce4-places-plugin\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-04-07 00:20+0900\n"
-"PO-Revision-Date: 2009-02-01 17:00+0200\n"
+"PO-Revision-Date: 2012-04-12 18:02+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish\n"
 "Language: \n"
@@ -92,7 +92,7 @@ msgstr "Irrota"
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:128
 msgid "Unmounting device"
-msgstr ""
+msgstr "Irrotetaan laitetta"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:131
@@ -101,12 +101,14 @@ msgid ""
 "The device \"%s\" is being unmounted by the system. Please do not remove the "
 "media or disconnect the drive"
 msgstr ""
+"Taltiota \"%s\" irrotetaan tiedostojärjestelmästä. Älä poista taltiota "
+"asemasta tai irrota laitetta."
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:138
 #: ../panel-plugin/model_volumes_notify.c:262
 msgid "Writing data to device"
-msgstr ""
+msgstr "Kirjoitetaan laitteelle"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:141
@@ -116,17 +118,19 @@ msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be "
 "removed. Please do not remove the media or disconnect the drive"
 msgstr ""
+"Laitteelle \"%s\" täytyy kirjoittaa tietoa ennen sen irrottamista. Älä "
+"poista taltiota tai irrota laitetta."
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:253
 msgid "Ejecting device"
-msgstr ""
+msgstr "Poistetaan taltio"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:256
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr ""
+msgstr "Laittetta \"%s\" irrotetaan. Tämä voi viedä hetken."
 
 #: ../panel-plugin/view.c:654
 msgid "Search for Files"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to b0f676b828259e5aac07dd282d2531a2d31fffa3 (commit)
   from 3cfcc0aefe3722af790877886d77f4f2a27e0b2c (commit)

commit b0f676b828259e5aac07dd282d2531a2d31fffa3
Author: Jari Rahkonen 
Date:   Thu Apr 12 16:55:25 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |   75 -
 1 files changed, 39 insertions(+), 36 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index bf3b90b..d1a8335 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -2,17 +2,17 @@
 # Copyright (C) 2009 Mike Massonnet
 # This file is distributed under the same license as the xfce4-clipman-plugin 
package.
 # Copyright (C) 2009 Lassi Kojo.
-# Copyright (C) 2010 Jari Rahkonen.
+# Copyright (C) 2010-2012 Jari Rahkonen.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-clipman-plugin 1.0.0\n"
+"Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-10-28 15:59+0200\n"
-"PO-Revision-Date: 2010-10-17 00:22+0300\n"
+"POT-Creation-Date: 2012-04-12 14:24+\n"
+"PO-Revision-Date: 2012-04-12 17:53+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish\n"
-"Language: \n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -22,14 +22,14 @@ msgstr ""
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.h:1
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:1
 msgid "Clipboard manager"
-msgstr "Leikepöytien hallintatyökalu"
+msgstr "Leikepöydän hallinta"
 
 #: ../panel-plugin/xfce4-clipman.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.h:2
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:2
-#: ../panel-plugin/main-panel-plugin.c:70
+#: ../panel-plugin/main-panel-plugin.c:72
 #: ../panel-plugin/main-status-icon.c:61 ../panel-plugin/main-status-icon.c:94
-#: ../panel-plugin/plugin.c:335
+#: ../panel-plugin/plugin.c:336
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -67,17 +67,17 @@ msgstr "Xfce:n vikailmoitus"
 
 #: ../panel-plugin/xfce4-clipman-settings.c:190
 msgid "None"
-msgstr ""
+msgstr "Ei mitään"
 
 #. TRANSLATORS: Keyboard shortcut
 #: ../panel-plugin/xfce4-clipman-settings.c:192
 msgid "Ctrl+V"
-msgstr ""
+msgstr "Ctrl+V"
 
 #. TRANSLATORS: Keyboard shortcut
 #: ../panel-plugin/xfce4-clipman-settings.c:194
 msgid "Shift+Insert"
-msgstr ""
+msgstr "Vaihto+Insert"
 
 #: ../panel-plugin/xfce4-clipman-settings.c:517
 msgid "Reset actions"
@@ -114,7 +114,7 @@ msgstr "Ainoastaan käsin kopioitaessa"
 
 #: ../panel-plugin/settings-dialog.ui.h:7
 msgid "Automatically paste a selected item from the history"
-msgstr ""
+msgstr "Liitä automaattisesti valittu historian kohde"
 
 #: ../panel-plugin/settings-dialog.ui.h:8
 msgid ""
@@ -182,7 +182,7 @@ msgstr "Nimi:"
 
 #: ../panel-plugin/settings-dialog.ui.h:21
 msgid "P_osition menu at mouse pointer"
-msgstr ""
+msgstr "Avaa valikko _hiiren kohdalla"
 
 #: ../panel-plugin/settings-dialog.ui.h:22
 msgid "Pattern:"
@@ -193,24 +193,26 @@ msgid ""
 "Popup the menu at the mouse pointer position, only for the xfce4-popup-"
 "clipman command"
 msgstr ""
+"Näytä valikko hiiren osoittimen kohdalla, vain käskyllä xfce4-popup-clipman" 
 
 #: ../panel-plugin/settings-dialog.ui.h:24
 msgid ""
 "Push last copied text to the top of the history, useful to reorder old items"
 msgstr ""
+"Siirrä viimeksi kopioitu teksti historian ylimmäksi; helpottaa vanhojen "
+"kohteiden järjestämistä"
 
 #: ../panel-plugin/settings-dialog.ui.h:25
 msgid "Re_verse history order"
-msgstr ""
+msgstr "Käännä historian järjestys"
 
 #: ../panel-plugin/settings-dialog.ui.h:26
 msgid "Regular expression"
 msgstr "Säännöllinen lauseke"
 
 #: ../panel-plugin/settings-dialog.ui.h:27
-#, fuzzy
 msgid "Reverse order of the history shown in the menu"
-msgstr "Säilytä historia Xfce-istuntojen välillä"
+msgstr "Käännä valikossa näytettävän historian järjestys"
 
 #: ../panel-plugin/settings-dialog.ui.h:28
 msgid "Save on _quit"
@@ -221,9 +223,8 @@ msgid "Size of the _history:"
 msgstr "Historian k_oko:"
 
 #: ../panel-plugin/settings-dialog.ui.h:30
-#, fuzzy
 msgid "Store last copied _image"
-msgstr "Tallenna _kuva"
+msgstr "Säilytä viimeksi kopioitu _kuva"
 
 #: ../panel-plugin/settings-dialog.ui.h:31
 msgid "Sync _selections"
@@ -235,13 +236,15 @@ msgstr "Lauseke ympäröidään aina erikoismerkeillä ^$"
 
 #: ../panel-plugin/settings-dialog.ui.h:33
 msgid "Tweaks"
-msgstr ""
+msgstr "Hienosäätö"
 
 #: ../panel-plugin/settings-dialog.ui.h:34
 msgid ""
 "When the selection is done (mouse or keyboard) and the Control key is still "
 "pressed down, the popup menu for matched actions will be skipped"
 msgstr ""
+"Kun valinta on tehty (hiirellä tai näppäimillä) ja Ctrl on yhä painettuna, "
+"vastaavien toimintojen ponnahdusvalikko ohitetaan" 
 

[Xfce4-commits] l10n: Initial Finnish translation

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 33a34727e50ee0fafc0c3165aef605d028e589bd (commit)
   from 2bf70a11a8707924c3a2e3cf2ff265a4f0410f9b (commit)

commit 33a34727e50ee0fafc0c3165aef605d028e589bd
Author: Jari Rahkonen 
Date:   Thu Apr 12 16:41:41 2012 +0200

l10n: Initial Finnish translation

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

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

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

diff --git a/po/fi.po b/po/fi.po
new file mode 100644
index 000..fd043f3
--- /dev/null
+++ b/po/fi.po
@@ -0,0 +1,31 @@
+# Finnish translations for xfce4-indicator-plugin package
+# Copyright (C) 2012 THE xfce4-indicator-plugin'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the
+# xfce4-indicator-plugin package.
+# Jari Rahkonen , 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: xfce4-indicator-plugin\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-12 09:12+\n"
+"PO-Revision-Date: 2012-04-12 17:38+0300\n"
+"Last-Translator: Jari Rahkonen \n"
+"Language-Team: Finnish\n"
+"Language: fi\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/indicator.c:175
+msgid "No Indicators"
+msgstr "Ei ilmaisimia"
+
+#: ../panel-plugin/indicator.desktop.in.in.h:1
+msgid "An indicator of something that needs your attention on the desktop"
+msgstr "Työpöydällä huomiotasi vaativan ohjelman tai tapahtuman ilmaisin"
+
+#: ../panel-plugin/indicator.desktop.in.in.h:2
+msgid "Indicator Plugin"
+msgstr "Ilmaisinliitännäinen"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 6a518f407e1ad4cd08a5ef62b85f468bae87883e (commit)
   from 9ff4fcbbbd973cb62a534a8d0fd27bf395b6ba72 (commit)

commit 6a518f407e1ad4cd08a5ef62b85f468bae87883e
Author: Jari Rahkonen 
Date:   Thu Apr 12 16:27:12 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |  625 +++---
 1 files changed, 313 insertions(+), 312 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index b90a391..269f030 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,14 +1,14 @@
 # Finnish translation of the ristretto package.
 # Copyright (C) 2007-2010 Stephan Arts .
 # This file is distributed under the same license as the ristretto package.
-# Jari Rahkonen , 2007-2010
+# Jari Rahkonen , 2007-2012
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: ristretto 0.0.90-gio\n"
+"Project-Id-Version: ristretto\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2012-02-20 19:45+0100\n"
-"PO-Revision-Date: 2010-11-17 13:08+0200\n"
+"POT-Creation-Date: 2012-04-12 13:09+\n"
+"PO-Revision-Date: 2012-04-12 17:26+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -30,10 +30,10 @@ msgstr "Aloita diaesitys"
 
 #: ../src/main.c:77
 msgid "Show settings dialog"
-msgstr ""
+msgstr "Näytä asetusikkuna"
 
 #: ../src/main.c:105
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "%s: %s\n"
 "\n"
@@ -41,551 +41,662 @@ msgid ""
 "available command line options.\n"
 msgstr ""
 "%s: %s\n"
-"Näet listan komentorivivalitsimista kirjoittamalla %s --help.\n"
+"\n"
+"Saat listan komentorivivalitsimista\n"
+"kirjoittamalla %s --help.\n"
 
-#: ../src/main_window.c:53 ../ristretto.desktop.in.h:1
+#: ../src/main_window.c:55 ../ristretto.desktop.in.h:1
 msgid "Image Viewer"
 msgstr "Kuvakatselin"
 
 #. File Menu
-#: ../src/main_window.c:332
+#: ../src/main_window.c:350
 msgid "_File"
 msgstr "_Tiedosto"
 
-#: ../src/main_window.c:333
+#: ../src/main_window.c:351
 msgid "_Open"
 msgstr "_Avaa"
 
-#: ../src/main_window.c:333
+#: ../src/main_window.c:351
 msgid "Open an image"
 msgstr "Avaa kuva"
 
-#: ../src/main_window.c:334
+#: ../src/main_window.c:352
 msgid "_Save copy"
 msgstr "Tallenna k_opio"
 
-#: ../src/main_window.c:334
+#: ../src/main_window.c:352
 msgid "Save a copy of the image"
 msgstr "Tallenna kopio kuvasta"
 
-#: ../src/main_window.c:335
+#: ../src/main_window.c:353
 msgid "_Properties"
-msgstr ""
+msgstr "Omi_naisuudet"
 
-#: ../src/main_window.c:335
+#: ../src/main_window.c:353
 msgid "Show file properties"
-msgstr ""
+msgstr "Näytä tiedoston ominaisuudet"
+
+#. Edit Menu
+#: ../src/main_window.c:354 ../src/main_window.c:358
+msgid "_Edit"
+msgstr "_Muokkaa"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:354
+msgid "Edit this image"
+msgstr "Muokkaa kuvaa"
+
+#: ../src/main_window.c:355
 msgid "_Close"
 msgstr "_Sulje"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:355
 msgid "Close this image"
 msgstr "Sulje kuva"
 
-#: ../src/main_window.c:337
+#: ../src/main_window.c:356
 msgid "_Quit"
 msgstr "_Lopeta"
 
-#: ../src/main_window.c:337
+#: ../src/main_window.c:356
 msgid "Quit Ristretto"
 msgstr "Sulje Ristretto"
 
-#. Edit Menu
-#: ../src/main_window.c:339
-msgid "_Edit"
-msgstr "_Muokkaa"
-
-#: ../src/main_window.c:340
+#: ../src/main_window.c:359
 msgid "_Open with..."
 msgstr "Avaa _sovelluksessa..."
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:360
 msgid "_Sorting"
 msgstr "Jä_rjestä"
 
-#: ../src/main_window.c:342
+#: ../src/main_window.c:361
 msgid "_Delete"
 msgstr "_Poista"
 
-#: ../src/main_window.c:342
-#, fuzzy
+#: ../src/main_window.c:361
 msgid "Delete this image from disk"
-msgstr "Sulje kuva"
+msgstr "Poista kuva levyltä"
 
-#: ../src/main_window.c:343
+#: ../src/main_window.c:362
 msgid "_Clear private data"
-msgstr ""
+msgstr "_Poista yksityisiä tietoja"
 
-#: ../src/main_window.c:344
+#: ../src/main_window.c:363
 msgid "_Preferences"
 msgstr "_Asetukset"
 
 #. View Menu
-#: ../src/main_window.c:346
+#: ../src/main_window.c:365
 msgid "_View"
 msgstr "_Näytä"
 
-#: ../src/main_window.c:347
+#: ../src/main_window.c:366
 msgid "_Fullscreen"
 msgstr "Koko_ruutu"
 
-#: ../src/main_window.c:348
+#: ../src/main_window.c:366
+msgid "Switch to fullscreen"
+msgstr "Siirry kokoruututilaan"
+
+#: ../src/main_window.c:367
 msgid "_Leave Fullscreen"
 msgstr "P_oistu kokoruudusta"
 
-#: ../src/main_window.c:349
+#: ../src/main_window.c:367
+msgid "Leave Fullscreen"
+msgstr "Poistu kokoruudusta"
+
+#: ../src/main_window.c:368
 msgid "_Set as Wallpaper"
 msgstr "_Aseta taustakuvaksi"
 
 #. Zoom submenu
-#: ../src/main_window.c:351
-#, fuzzy
+#: ../src/main_window.c:370
 msgid "_Zoom"
-msgstr "S_uurennus"
+msgstr "S_uurenna"
 
-#: ../src/main_window.c:352
+#: ../src/main_window.c:371
 msgid "Zoom _In"
 msgstr "_Suurenna"

[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to f643cd0bed58ef861e4b0f6f96c208e421539695 (commit)
   from 629c6ce20296f83bb091622b2b1deaef32bc6609 (commit)

commit f643cd0bed58ef861e4b0f6f96c208e421539695
Author: Jari Rahkonen 
Date:   Thu Apr 12 15:55:54 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |   76 +++---
 1 files changed, 33 insertions(+), 43 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index 1e32d09..c2fee76 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,24 +1,24 @@
 # Finnish translations for xfce4-notifyd package.
 # Copyright (C) 2008 Brian J. Tarricone
 # This file is distributed under the same license as the xfce-notifyd package.
-# Jari Rahkonen , 2008, 2010.
+# Jari Rahkonen , 2008-2012.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-notifyd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-22 23:03+\n"
-"PO-Revision-Date: 2010-11-23 11:36+0200\n"
+"POT-Creation-Date: 2012-04-12 09:39+\n"
+"PO-Revision-Date: 2012-04-12 16:55+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to ffa4fa3ba22d28e01f189b9f8eaaec4274625157 (commit)
   from 08bd0a61a341b64703f609f8d39f40ad90235a0c (commit)

commit ffa4fa3ba22d28e01f189b9f8eaaec4274625157
Author: Jari Rahkonen 
Date:   Thu Apr 12 15:53:03 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |  307 +++---
 1 files changed, 155 insertions(+), 152 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index 9fcb7fe..e784583 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,16 +1,17 @@
 # Finnish translation of Terminal package.
 # Copyright (C) 2003-2007 os-cillation e.K.
 # This file is distributed under the same license as the Terminal package.
-# Jari Rahkonen , 2005-2010.
+# Jari Rahkonen , 2005-2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: Terminal 0.4.4\n"
+"Project-Id-Version: Terminal\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-02-17 17:01+\n"
-"PO-Revision-Date: 2011-02-17 22:10+0200\n"
+"POT-Creation-Date: 2012-04-12 13:21+\n"
+"PO-Revision-Date: 2012-04-12 16:52+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -86,8 +87,8 @@ msgstr "kuvake"
 msgid "See the %s man page for full explanation of the options above."
 msgstr "Ylläolevien valitsinten selitykset saat komennolla \"man %s\"."
 
-#: ../terminal/main.c:126 ../terminal/terminal-preferences.c:1262
-#: ../terminal/terminal-shortcut-editor.c:119 ../Terminal.desktop.in.in.h:1
+#: ../terminal/main.c:126 ../terminal/terminal-preferences.c:1274
+#: ../terminal/terminal-shortcut-editor.c:120 ../Terminal.desktop.in.in.h:1
 msgid "Terminal"
 msgstr "Pääte"
 
@@ -136,45 +137,18 @@ msgstr "D-BUS-viestiyhteys katkaistu, poistutaan...\n"
 msgid "Unable to register object %s"
 msgstr "Ei voi rekisteröidä oliota %s"
 
-#: ../terminal/terminal-dialogs.c:95 ../Terminal-default-apps.xml.in.in.h:1
+#: ../terminal/terminal-dialogs.c:90 ../Terminal-default-apps.xml.in.in.h:1
 msgid "Xfce Terminal Emulator"
 msgstr "Pääteohjelma Xfce-ympäristöön"
 
-#: ../terminal/terminal-dialogs.c:102
+#: ../terminal/terminal-dialogs.c:97
 msgid "translator-credits"
 msgstr "Jari Rahkonen "
 
-#: ../terminal/terminal-dialogs.c:105
+#: ../terminal/terminal-dialogs.c:100
 msgid "Visit Terminal website"
 msgstr "Käy sovelluksen verkkosivuilla"
 
-#: ../terminal/terminal-dialogs.c:215
-#, c-format
-msgid "The %s user manual is not installed on your computer"
-msgstr "%s-käyttöopasta ei ole asennettu koneellesi"
-
-#: ../terminal/terminal-dialogs.c:218
-#, c-format
-msgid ""
-"You can read the user manual online. This manual may however not exactly "
-"match your %s version."
-msgstr ""
-"Käyttöopas on luettavissa myös verkossa, mutta se ei välttämättä vastaa "
-"tarkkaan käyttämääsi %s-versiota."
-
-#: ../terminal/terminal-dialogs.c:220
-msgid "User manual is missing"
-msgstr "Käyttöopas puuttuu"
-
-#: ../terminal/terminal-dialogs.c:222
-msgid "_Read Online"
-msgstr "Lue _verkossa"
-
-#. display an error message to the user
-#: ../terminal/terminal-dialogs.c:302
-msgid "Failed to open the documentation browser"
-msgstr "Dokumentaatioselaimen avaaminen epäonnistui"
-
 #: ../terminal/terminal-options.c:210
 #, c-format
 msgid ""
@@ -259,142 +233,145 @@ msgstr ""
 msgid "Unknown option \"%s\""
 msgstr "Tuntematon valitsin \"%s\""
 
-#: ../terminal/terminal-preferences-dialog.c:227
+#: ../terminal/terminal-preferences-dialog.c:228
 msgid "All Files"
 msgstr "Kaikki tiedostot"
 
-#: ../terminal/terminal-preferences-dialog.c:233
+#: ../terminal/terminal-preferences-dialog.c:234
 msgid "Image Files"
 msgstr "Kuvatiedostot"
 
-#: ../terminal/terminal-preferences.c:309
+#: ../terminal/terminal-preferences.c:310
 msgid "Open Tab"
 msgstr "Avaa välilehti"
 
-#: ../terminal/terminal-preferences.c:320
+#: ../terminal/terminal-preferences.c:321
 msgid "Open Terminal"
 msgstr "Avaa pääte"
 
-#: ../terminal/terminal-preferences.c:331
+#: ../terminal/terminal-preferences.c:332
 msgid "Detach Tab"
 msgstr "Irrota välilehti"
 
-#: ../terminal/terminal-preferences.c:342
+#: ../terminal/terminal-preferences.c:343
 msgid "Close Tab"
 msgstr "Sulje välilehti"
 
-#: ../terminal/terminal-preferences.c:353
+#: ../terminal/terminal-preferences.c:354
 msgid "Close Window"
 msgstr "Sulje ikkuna"
 
-#: ../terminal/terminal-preferences.c:364
+#: ../terminal/terminal-preferences.c:365
 msgid "Copy"
 msgstr "Kopioi"
 
-#: ../terminal/terminal-preferences.c:375
+#: ../terminal/terminal-preferences.c:376
 msgid "Paste"
 msgstr "Liitä"
 
-#: ../terminal/terminal-preferences.c:386
+#: ../terminal/terminal-preferences.c:387
 msgid "Paste Selection"
 msgstr "Liitä valinta"
 
-#: ../terminal/terminal-preferences.c:397
+#: ../terminal/

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 334536af4a160d7d5bb1fba562fb454dbded43d3 (commit)
   from 2d23e997f2a01c7f03c8804b0be4ce50e3d74430 (commit)

commit 334536af4a160d7d5bb1fba562fb454dbded43d3
Author: Robert Hartl 
Date:   Thu Apr 12 15:31:53 2012 +0200

l10n: Updated Slovak (sk) translation to 100%

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

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

 po/sk.po |   12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index fae2255..b990bfd 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-wavelan-plugin 
package.
 # Tomáš Vadina , 2011.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-wavelan-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 23:00+0200\n"
+"POT-Creation-Date: 2012-04-12 11:00+\n"
 "PO-Revision-Date: 2011-08-04 07:59+0200\n"
 "Last-Translator: Tomáš Vadina \n"
 "Language-Team: Slovak \n"
-"Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sk\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n"
 
 #: ../panel-plugin/wavelan.c:153
@@ -59,12 +59,12 @@ msgstr "Povoliť farby kvality signálu"
 
 #: ../panel-plugin/wavelan.c:608
 msgid "Show icon"
-msgstr ""
+msgstr "Zobraziť ikonu"
 
-#: ../panel-plugin/wavelan.c:671 ../panel-plugin/wavelan.desktop.in.h:2
+#: ../panel-plugin/wavelan.c:671 ../panel-plugin/wavelan.desktop.in.h:1
 msgid "View the status of a wireless network"
 msgstr "Zobrazuje stav bezdrôtovej siete"
 
-#: ../panel-plugin/wavelan.desktop.in.h:1
+#: ../panel-plugin/wavelan.desktop.in.h:2
 msgid "Wavelan"
 msgstr "Bezdrôtová sieť"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] add .gitignore

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 8d6faab375f902631457bace31fa8f9debf201b6 (commit)
   from 2ed71d009a855e0e47a89947cccf91470d29d824 (commit)

commit 8d6faab375f902631457bace31fa8f9debf201b6
Author: Landry Breuil 
Date:   Thu Apr 12 15:08:32 2012 +0200

add .gitignore

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

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..1e8e484
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,26 @@
+po/
+*Makefile
+*Makefile.in
+stamp*
+*/.deps
+.libs
+*.orig
+*.o
+*.lo
+*.la
+\[config.h\].in
+*,orig
+configure
+config.*
+configure.ac
+intltool*
+mkinstalldirs
+missing
+compile
+install-sh
+ltmain.sh
+libtool
+depcomp
+aclocal.m4
+autom4te.cache
+*.desktop
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Better handling of old config migrations.

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 2ed71d009a855e0e47a89947cccf91470d29d824 (commit)
   from 1ef3ace88767345b94b3155e36d067a364c31ed9 (commit)

commit 2ed71d009a855e0e47a89947cccf91470d29d824
Author: Landry Breuil 
Date:   Thu Apr 12 15:07:09 2012 +0200

Better handling of old config migrations.

Since a boolean rc value can be read as a string, had to rename the
offending boolean settings. Migration should be transparent to users.

 panel-plugin/mount-plugin.c |   46 +-
 1 files changed, 27 insertions(+), 19 deletions(-)

diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index 261f0b9..78f2280 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -354,7 +354,6 @@ on_button_press (GtkWidget *widget, GdkEventButton *event, 
t_mounter *mounter)
 static void
 mounter_read_config (XfcePanelPlugin *plugin, t_mounter *mt)
 {
-const char *value;
 gchar *icon;
 char *file;
 XfceRc *rc;
@@ -381,24 +380,33 @@ mounter_read_config (XfcePanelPlugin *plugin, t_mounter 
*mt)
 mt->umount_command = g_strdup(xfce_rc_read_entry(rc, "umount_command", 
DEFAULT_UMOUNT_COMMAND));
 mt->excluded_filesystems = g_strdup(xfce_rc_read_entry(rc, 
"excluded_filesystems", ""));
 
-/* before 0.5.7 booleans were stored as string "1".. handle legacy configs 
*/
-value = xfce_rc_read_entry(rc, "message_dialog", NULL);
-mt->message_dialog = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"message_dialog", FALSE) : atoi(value));
+mt->use_sudo = xfce_rc_read_bool_entry(rc, "use_sudo", FALSE);
 
-value = xfce_rc_read_entry(rc, "include_NFSs", NULL);
-mt->include_NFSs = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"include_NFSs", FALSE) : atoi(value));
+/* before 0.6.0 those booleans were stored as string "1".. handle/merge 
legacy configs */
+if (xfce_rc_has_entry(rc, "message_dialog"))
+mt->message_dialog = atoi(xfce_rc_read_entry(rc, "message_dialog", 
NULL));
+else
+mt->message_dialog = xfce_rc_read_bool_entry(rc, 
"show_message_dialog", FALSE);
 
-value = xfce_rc_read_entry(rc, "exclude_FSs", NULL);
-mt->exclude_FSs = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"exclude_FSs", FALSE) : atoi(value));
+if (xfce_rc_has_entry(rc, "include_NFSs"))
+mt->include_NFSs = atoi(xfce_rc_read_entry(rc, "include_NFSs", NULL));
+else
+mt->include_NFSs = xfce_rc_read_bool_entry(rc, 
"include_networked_filesystems", FALSE);
 
-value = xfce_rc_read_entry(rc, "exclude_devicenames", NULL);
-mt->exclude_devicenames = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"exclude_devicenames", FALSE) : atoi(value));
+if (xfce_rc_has_entry(rc, "exclude_FSs"))
+mt->exclude_FSs = atoi(xfce_rc_read_entry(rc, "exclude_FSs", NULL));
+else
+mt->exclude_FSs = xfce_rc_read_bool_entry(rc, 
"exclude_selected_filesystems", FALSE);
 
-value = xfce_rc_read_entry(rc, "eject_drives", NULL);
-mt->eject_drives = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"eject_drives", FALSE) : atoi(value));
+if (xfce_rc_has_entry(rc, "exclude_devicenames"))
+mt->exclude_devicenames = atoi(xfce_rc_read_entry(rc, 
"exclude_devicenames", NULL));
+else
+mt->exclude_devicenames = xfce_rc_read_bool_entry(rc, 
"exclude_devicenames_in_menu", FALSE);
 
-value = xfce_rc_read_entry(rc, "use_sudo", NULL);
-mt->use_sudo = (value == NULL ? xfce_rc_read_bool_entry(rc, "use_sudo", 
FALSE) : atoi(value));
+if (xfce_rc_has_entry(rc, "eject_drives"))
+mt->eject_drives = atoi(xfce_rc_read_entry(rc, "eject_drives", NULL));
+else
+mt->eject_drives = xfce_rc_read_bool_entry(rc, "eject_cddrives", 
FALSE);
 
 xfce_rc_close (rc);
 
@@ -430,11 +438,11 @@ mounter_write_config (XfcePanelPlugin *plugin, t_mounter 
*mt)
 xfce_rc_write_entry (rc, "umount_command", mt->umount_command);
 xfce_rc_write_entry (rc, "excluded_filesystems", mt->excluded_filesystems);
 xfce_rc_write_entry (rc, "icon", mt->icon);
-xfce_rc_write_bool_entry (rc, "message_dialog", mt->message_dialog);
-xfce_rc_write_bool_entry (rc, "include_NFSs", mt->include_NFSs);
-xfce_rc_write_bool_entry (rc, "exclude_FSs", mt->exclude_FSs);
-xfce_rc_write_bool_entry (rc, "exclude_devicenames", 
mt->exclude_devicenames);
-xfce_rc_write_bool_entry (rc, "eject_drives", mt->eject_drives);
+xfce_rc_write_bool_entry (rc, "show_message_dialog", mt->message_dialog);
+xfce_rc_write_bool_entry (rc, "include_networked_filesystems", 
mt->include_NFSs);
+xfce_rc_write_bool_entry (rc, "exclude_selected_filesystems", 
mt->exclude_FSs);
+xfce_rc_write_bool_entry (rc, "exclude_devicenames_in_menu", 
mt->exclude_devicenames);
+xfce_rc_write_bool_entry (rc, "eject_cddrives", mt->eject_drives);
 xfce_rc_write_bool_entry (rc, "use_sudo", mt->use_sudo);
 
 xfce_rc_close (rc);
_

[Xfce4-commits] format the percentage in progressbar with %

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 1ef3ace88767345b94b3155e36d067a364c31ed9 (commit)
   from 9820ef6f0d961675f8f64f49189270c7e8ce16ce (commit)

commit 1ef3ace88767345b94b3155e36d067a364c31ed9
Author: Landry Breuil 
Date:   Thu Apr 12 14:52:16 2012 +0200

format the percentage in progressbar with %

 panel-plugin/mount-plugin.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index 81c3e8a..261f0b9 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -222,7 +222,7 @@ disk_display_refresh (t_disk_display * disk_display)
  ((gdouble)mount_info->percent / 100) );
 gtk_progress_bar_set_text (
  GTK_PROGRESS_BAR(disk_display->progress_bar),
- g_strdup_printf ("%d",mount_info->percent));
+ g_strdup_printf ("%d%%",mount_info->percent));
 gtk_widget_show (GTK_WIDGET(disk_display->progress_bar));
 }
 else /* mount_info == NULL */
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Rewrite config saving/loading, probably fixes bug #7631

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 9820ef6f0d961675f8f64f49189270c7e8ce16ce (commit)
   from 416f29f2a4df4fd368d54b3b7d1973b85d515c57 (commit)

commit 9820ef6f0d961675f8f64f49189270c7e8ce16ce
Author: Landry Breuil 
Date:   Thu Apr 12 14:40:00 2012 +0200

Rewrite config saving/loading, probably fixes bug #7631

- Use booleans instead of storing bools values as string 1
- Save all settings, not just the non-defaults
- Use fallback arg from xfce_rc_read_entry() entry instead of doing an if 
dance
- g_free the previous string values before reading them, avoid leaks

 panel-plugin/mount-plugin.c |  113 --
 1 files changed, 43 insertions(+), 70 deletions(-)

diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index 3af4fd0..81c3e8a 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -355,58 +355,50 @@ static void
 mounter_read_config (XfcePanelPlugin *plugin, t_mounter *mt)
 {
 const char *value;
+gchar *icon;
 char *file;
 XfceRc *rc;
 TRACE ("enter read_config");
 
 if ( !( file = xfce_panel_plugin_lookup_rc_file (plugin) ) )
 return;
-
+DBG("going to read config from %s", file);
 rc = xfce_rc_simple_open (file, TRUE);
 g_free (file);
 
-if ( (value = xfce_rc_read_entry(rc, "on_mount_cmd", NULL)) )
-  mt->on_mount_cmd = g_strdup (value);
+if (mt->icon != NULL) g_free(mt->icon);
+if (mt->on_mount_cmd != NULL) g_free(mt->on_mount_cmd);
+if (mt->mount_command != NULL) g_free(mt->mount_command);
+if (mt->umount_command != NULL) g_free(mt->umount_command);
+if (mt->excluded_filesystems != NULL) g_free(mt->excluded_filesystems);
 
-if ( (value = xfce_rc_read_entry(rc, "icon", NULL)) )
-mt->icon = g_strdup (value);
-else
-mt->icon = g_strdup_printf (
-"%s/icons/hicolor/scalable/apps/xfce-mount.svg",
-PACKAGE_DATA_DIR );
+icon = g_strdup_printf ("%s/icons/hicolor/scalable/apps/xfce-mount.svg", 
PACKAGE_DATA_DIR );
+mt->icon = g_strdup(xfce_rc_read_entry(rc, "icon", icon));
+g_free(icon);
 
-if ( (value = xfce_rc_read_entry (rc, "mount_command", NULL)) )
-mt->mount_command = g_strdup (value);
-else
-mt->mount_command = g_strdup (DEFAULT_MOUNT_COMMAND);
+mt->on_mount_cmd = g_strdup(xfce_rc_read_entry(rc, "on_mount_cmd", ""));
+mt->mount_command = g_strdup(xfce_rc_read_entry(rc, "mount_command", 
DEFAULT_MOUNT_COMMAND));
+mt->umount_command = g_strdup(xfce_rc_read_entry(rc, "umount_command", 
DEFAULT_UMOUNT_COMMAND));
+mt->excluded_filesystems = g_strdup(xfce_rc_read_entry(rc, 
"excluded_filesystems", ""));
 
-if ( (value = xfce_rc_read_entry (rc, "umount_command", NULL)) )
-mt->umount_command = g_strdup (value);
-else
-mt->umount_command = g_strdup (DEFAULT_UMOUNT_COMMAND);
+/* before 0.5.7 booleans were stored as string "1".. handle legacy configs 
*/
+value = xfce_rc_read_entry(rc, "message_dialog", NULL);
+mt->message_dialog = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"message_dialog", FALSE) : atoi(value));
 
-if ( (value = xfce_rc_read_entry (rc, "excluded_filesystems", NULL)) )
-mt->excluded_filesystems = g_strdup (value);
-else
-mt->excluded_filesystems = g_strdup ("");
-
-if ( (value = xfce_rc_read_entry(rc, "message_dialog", NULL)) )
-mt->message_dialog = atoi (value);
+value = xfce_rc_read_entry(rc, "include_NFSs", NULL);
+mt->include_NFSs = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"include_NFSs", FALSE) : atoi(value));
 
-if ( (value = xfce_rc_read_entry(rc, "include_NFSs", NULL)) )
-mt->include_NFSs= atoi (value);
+value = xfce_rc_read_entry(rc, "exclude_FSs", NULL);
+mt->exclude_FSs = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"exclude_FSs", FALSE) : atoi(value));
 
-if ( (value = xfce_rc_read_entry(rc, "exclude_FSs", NULL)) )
-mt->exclude_FSs= atoi (value);
+value = xfce_rc_read_entry(rc, "exclude_devicenames", NULL);
+mt->exclude_devicenames = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"exclude_devicenames", FALSE) : atoi(value));
 
-if ( (value = xfce_rc_read_entry(rc, "exclude_devicenames", NULL)) )
-mt->exclude_devicenames= atoi (value);
+value = xfce_rc_read_entry(rc, "eject_drives", NULL);
+mt->eject_drives = (value == NULL ? xfce_rc_read_bool_entry(rc, 
"eject_drives", FALSE) : atoi(value));
 
-if ( (value = xfce_rc_read_entry(rc, "eject_drives", NULL)) )
-mt->eject_drives= atoi (value);
-
-if ( (value = xfce_rc_read_entry(rc, "use_sudo", NULL)) )
-mt->use_sudo= atoi (value);
+value = xfce_rc_read_entry(rc, "use_sudo", NULL);
+mt->use_sudo = (value == NULL ? xfce_rc_read_bool_entry(rc, "use_sudo", 
FALSE) : atoi(value));
 
 xfce_rc_close (rc);
 
@@ -426,43 +418,24 @@ mounter_write_config (XfcePanelPlugin *plugin, 

[Xfce4-commits] oops, fix copypasto

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 416f29f2a4df4fd368d54b3b7d1973b85d515c57 (commit)
   from 00259a5d658d8e8662f516d5c4275222cf776869 (commit)

commit 416f29f2a4df4fd368d54b3b7d1973b85d515c57
Author: Landry Breuil 
Date:   Thu Apr 12 12:20:28 2012 +0200

oops, fix copypasto

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

diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index 9c72847..3af4fd0 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -534,7 +534,6 @@ free_mounter_dialog(GtkWidget * widget, t_mounter_dialog * 
md)
 static void
 mounter_apply_options (t_mounter_dialog *md)
 {
-const char * tmp;
 gboolean incl_NFSs, excl_FSs;
 t_mounter * mt = md->mt;
 TRACE ("enters mounter_apply_options");
@@ -543,7 +542,7 @@ mounter_apply_options (t_mounter_dialog *md)
 incl_NFSs = mt->include_NFSs;
 excl_FSs = mt->exclude_FSs;
 
-mt->on_mount_cmd = g_strdup ( tmp = gtk_entry_get_text
+mt->on_mount_cmd = g_strdup ( gtk_entry_get_text
   (GTK_ENTRY(md->string_cmd)) );
 
 if ( gtk_toggle_button_get_active
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] add copyright

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 00259a5d658d8e8662f516d5c4275222cf776869 (commit)
   from a8c711350db558b5250fc046bce814ec3bfc612a (commit)

commit 00259a5d658d8e8662f516d5c4275222cf776869
Author: Landry Breuil 
Date:   Thu Apr 12 12:13:23 2012 +0200

add copyright

 panel-plugin/devices.c  |2 +-
 panel-plugin/mount-plugin.c |1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
index 2b26f5e..cafb5ca 100644
--- a/panel-plugin/devices.c
+++ b/panel-plugin/devices.c
@@ -3,7 +3,7 @@
 /*
 Copyright (C) 2005 Jean-Baptiste jb_...@yahoo.com
 Copyright (C) 2005-2008 Fabian Nowak timyst...@arcor.de.
-Copyright (C) 2009 Landry Breuil 
+Copyright (C) 2009,2012 Landry Breuil 
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index ac725a0..9c72847 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -3,6 +3,7 @@
 /*
 Copyright (C) 2005 Jean-Baptiste jb_...@yahoo.com
 Copyright (C) 2005-2008 Fabian Nowak timyst...@arcor.de.
+Copyright (C) 2012 Landry Breuil 
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 2d23e997f2a01c7f03c8804b0be4ce50e3d74430 (commit)
   from 2b568bca3eed7c02edae25c6a6fabd285ac6fa24 (commit)

commit 2d23e997f2a01c7f03c8804b0be4ce50e3d74430
Author: Piarres Beobide 
Date:   Thu Apr 12 13:14:09 2012 +0200

l10n: Updated Basque (eu) translation to 100%

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

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

 po/eu.po |   12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 3a6feb5..75d4525 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -2,20 +2,20 @@
 # Basque translations for PACKAGE package.
 # Copyright (C) 2003-2005 Benedikt Meurer.
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Piarres Beobide , 2006.
 msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 23:00+0200\n"
+"POT-Creation-Date: 2012-04-12 11:00+\n"
 "PO-Revision-Date: 2008-12-08 23:22+0100\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: librezale \n"
-"Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.1.0\n"
 
@@ -61,12 +61,12 @@ msgstr "Gaitu seinale kalitate koloreak"
 
 #: ../panel-plugin/wavelan.c:608
 msgid "Show icon"
-msgstr ""
+msgstr "Ikusi ikonoa"
 
-#: ../panel-plugin/wavelan.c:671 ../panel-plugin/wavelan.desktop.in.h:2
+#: ../panel-plugin/wavelan.c:671 ../panel-plugin/wavelan.desktop.in.h:1
 msgid "View the status of a wireless network"
 msgstr "Ikusi haririk gabeko sarearen egoera"
 
-#: ../panel-plugin/wavelan.desktop.in.h:1
+#: ../panel-plugin/wavelan.desktop.in.h:2
 msgid "Wavelan"
 msgstr "Wavelan"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 2802a59d8d6b5045179b8a55c74eb4121f931dbf (commit)
   from 7be41ed11b941132c1c03818e11ae6cf57f427f5 (commit)

commit 2802a59d8d6b5045179b8a55c74eb4121f931dbf
Author: Piarres Beobide 
Date:   Thu Apr 12 13:12:45 2012 +0200

l10n: Updated Basque (eu) translation to 100%

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

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

 po/eu.po |   20 +++-
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index c78dfc7..9f4840b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -6,10 +6,10 @@
 # Basque translations for xfce package.
 # Copyright (C) 2004-2006 Benedikt Meurer.
 # This file is distributed under the same license as the Thunar package.
-#
+# 
 # ###
 # Copyright (C) 1999, 2004, 2006, 2007, 2008, 2009 Free Software Foundation, 
Inc.
-#
+# 
 # Piarres Beobide , 2006, 2008, 2009.
 # Joseba Bidaurrazaga van Dierdonck , 2000.
 # Hizkuntza Politikarako Sailburuordetza , 2004.
@@ -23,12 +23,12 @@ msgstr ""
 "PO-Revision-Date: 2009-08-18 09:48+0200\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: Euskara \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: nplurals=2; plural=(n != 1);\n"
+"X-Generator: KBabel 1.11.4\n"
 
 #. vim: set ai et tabstop=4:
 #: ../panel-plugin/places.desktop.in.in.h:1
@@ -89,7 +89,7 @@ msgstr "Desmuntatu"
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:128
 msgid "Unmounting device"
-msgstr ""
+msgstr "Gailua desmuntatzen"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:131
@@ -98,12 +98,14 @@ msgid ""
 "The device \"%s\" is being unmounted by the system. Please do not remove the "
 "media or disconnect the drive"
 msgstr ""
+"\"%s\" gailua sistematik desmuntatua izaten ari da.\r\n"
+"Mesedez ez atera euskarria edo gailua desktonektatu"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:138
 #: ../panel-plugin/model_volumes_notify.c:262
 msgid "Writing data to device"
-msgstr ""
+msgstr "Gailuan datuak idatzen"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:141
@@ -112,18 +114,18 @@ msgstr ""
 msgid ""
 "There is data that needs to be written to the device \"%s\" before it can be "
 "removed. Please do not remove the media or disconnect the drive"
-msgstr ""
+msgstr "\"%s\" gailuan kendu aurretik gorde behar diren datuak daude. Mesedez 
ez kendu euskarria edo gailua deskonektatu."
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:253
 msgid "Ejecting device"
-msgstr ""
+msgstr "Gailua egozten"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../panel-plugin/model_volumes_notify.c:256
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr ""
+msgstr "\"%s\" gailua egozten ari da. Denbora apur bat hartu lezake"
 
 #: ../panel-plugin/view.c:654
 msgid "Search for Files"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 5573a76e0356d01e3a6f65caf3f5957d466d8758 (commit)
   from 43226369e9b9aeb2fa02b77d7a95aa48b57f600a (commit)

commit 5573a76e0356d01e3a6f65caf3f5957d466d8758
Author: Piarres Beobide 
Date:   Thu Apr 12 13:09:08 2012 +0200

l10n: Updated Basque (eu) translation to 100%

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

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

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

diff --git a/po/eu.po b/po/eu.po
index d95faf2..af11084 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -187,7 +187,6 @@ msgid ""
 msgstr "Diskperf monitoreak uneko diskoaren S/I transferentzia eta lan aldiak 
bistaratzen ditu."
 
 #: ../panel-plugin/main.c:910
-#, fuzzy
 msgid "Copyright (c) 2003, 2004 Roger Seguin"
 msgstr "Copyright (c) 2003, 2004 Roger Seguin"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 97%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 43226369e9b9aeb2fa02b77d7a95aa48b57f600a (commit)
   from a4e2b6dce0c7f9b97073543be61f75347317becc (commit)

commit 43226369e9b9aeb2fa02b77d7a95aa48b57f600a
Author: Piarres Beobide 
Date:   Thu Apr 12 13:08:52 2012 +0200

l10n: Updated Basque (eu) translation to 97%

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

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

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

diff --git a/po/eu.po b/po/eu.po
index c09ff7f..d95faf2 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -11,10 +11,10 @@ msgstr ""
 "PO-Revision-Date: 2008-11-09 15:41+0200\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: librezale \n"
-"Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 1.2.0\n"
 
@@ -184,11 +184,12 @@ msgstr ""
 msgid ""
 "Diskperf monitor displays instantaneous disk I/O transfer rates and busy "
 "times"
-msgstr ""
+msgstr "Diskperf monitoreak uneko diskoaren S/I transferentzia eta lan aldiak 
bistaratzen ditu."
 
 #: ../panel-plugin/main.c:910
+#, fuzzy
 msgid "Copyright (c) 2003, 2004 Roger Seguin"
-msgstr ""
+msgstr "Copyright (c) 2003, 2004 Roger Seguin"
 
 #: ../panel-plugin/main.c:944 ../panel-plugin/diskperf.desktop.in.h:1
 msgid "Disk Performance Monitor"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 7e3615049818c8662b15a2eae3607a9d6f572762 (commit)
   from 2949205a47d69469d63749b5f02c7fbc8de36467 (commit)

commit 7e3615049818c8662b15a2eae3607a9d6f572762
Author: Piarres Beobide 
Date:   Thu Apr 12 12:49:19 2012 +0200

l10n: Updated Basque (eu) translation to 100%

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

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

 po/eu.po |   14 +-
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 9a95a52..5134774 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-03 11:15+\n"
+"POT-Creation-Date: 2012-04-12 08:24+\n"
 "PO-Revision-Date: 2009-10-21 13:53+0200\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: Basque \n"
@@ -82,6 +82,10 @@ msgstr "Aplikazio bilatzailea"
 msgid "Toggle view mode"
 msgstr "Txandakatu ikuste modua"
 
+#: ../src/appfinder-window.c:363
+msgid "La_unch"
+msgstr "Ab_iarazi"
+
 #: ../src/appfinder-window.c:798
 msgid "Failed to launch desktop item editor"
 msgstr "Huts mahaigain elementu editorea abiaraztean"
@@ -222,7 +226,10 @@ msgid ""
 "Instead of quitting the application when the last window is closed, keep a "
 "running instance to speed up opening new windows. You might want to disable "
 "this to reduce memory usage."
-msgstr "Azken leiho ixterakoan aplikazioa itxi beharrean atzealdean martxan 
mantendu leiho berrien irekitzea azkartzeko. Agian hau desgaitu nahiko duzu 
memoria erabilpena murrizteko."
+msgstr ""
+"Azken leiho ixterakoan aplikazioa itxi beharrean atzealdean martxan mantendu "
+"leiho berrien irekitzea azkartzeko. Agian hau desgaitu nahiko duzu memoria "
+"erabilpena murrizteko."
 
 #: ../src/appfinder-preferences.glade.h:15
 msgid "Ite_m icon size:"
@@ -334,9 +341,6 @@ msgstr "Exekutatu programa"
 #~ msgid "C_lose after launch"
 #~ msgstr "I_txi abiarazi ondoren"
 
-#~ msgid "Launch"
-#~ msgstr "Abiarazi"
-
 #~ msgid "Could not load menu from %s"
 #~ msgstr "Ezin da %s-tik menua kargatu"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Sanitize configuration values handling.

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to a8c711350db558b5250fc046bce814ec3bfc612a (commit)
   from a281a4309eaa8e48fa26cae1f125691452f61478 (commit)

commit a8c711350db558b5250fc046bce814ec3bfc612a
Author: Landry Breuil 
Date:   Thu Apr 12 12:08:15 2012 +0200

Sanitize configuration values handling.

Set default values in create_mounter_control() instead of
saving/overwriting/restoring them in mounter_refresh()/mounter_data_new(),
which is called upon every click on the plugin.
While here provide a default for on_mount_cmd and set it like others
in mounter_apply_options() (removes a possible double-free)

 panel-plugin/mount-plugin.c |   68 +--
 1 files changed, 14 insertions(+), 54 deletions(-)

diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index a5f99f0..ac725a0 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -315,24 +315,6 @@ mounter_data_new (t_mounter *mt)
 
 disk_display_set_sizes(disk_displays);
 
-mt->icon = PACKAGE_DATA_DIR"/icons/hicolor/scalable/apps/xfce-mount.svg";
-mt->mount_command = DEFAULT_MOUNT_COMMAND;
-mt->umount_command = DEFAULT_UMOUNT_COMMAND;
-
-mt->excluded_filesystems = "";
-
-mt->message_dialog = FALSE;
-
-mt->include_NFSs = FALSE;
-
-mt->exclude_FSs = FALSE;
-
-mt->eject_drives = FALSE;
-
-mt->exclude_devicenames = FALSE;
-
-mt->use_sudo = FALSE;
-
 TRACE ("leaves mounter_data_new");
 
 return ;
@@ -342,38 +324,12 @@ mounter_data_new (t_mounter *mt)
 static void
 mounter_refresh (t_mounter * mt)
 {
-gchar *mount, *umount, *icon, *excl_filesystems;
-gboolean msg_dlg, incl_NFSs, excl_FSs, excl_DNs, use_sudo, eject;
 TRACE ("enters mounter_refresh");
 
 mounter_data_free (mt);
-mount = g_strdup (mt->mount_command);
-umount = g_strdup (mt->umount_command);
-icon = g_strdup (mt->icon);
-excl_filesystems = g_strdup (mt->excluded_filesystems);
-DBG ("Changed icon value from '%s' to '%s'.", mt->icon, icon);
-msg_dlg = mt->message_dialog;
-incl_NFSs = mt->include_NFSs;
-excl_FSs = mt->exclude_FSs;
-excl_DNs = mt->exclude_devicenames;
-use_sudo = mt->use_sudo;
-eject = mt->eject_drives;
-
 mounter_data_new (mt);
-mt->icon = g_strdup (icon);
-DBG ("Changed icon value from '%s' to '%s'.", icon, mt->icon);
-mt->mount_command = g_strdup (mount);
-mt->umount_command = g_strdup (umount);
-mt->excluded_filesystems = g_strdup (excl_filesystems);
-mt->message_dialog = msg_dlg;
-mt->include_NFSs = incl_NFSs;
-mt->exclude_FSs = excl_FSs;
-mt->exclude_devicenames = excl_DNs;
-mt->use_sudo = use_sudo;
-mt->eject_drives = eject;
 
 TRACE ("leaves mounter_refresh");
-
 }
 
 
@@ -521,10 +477,18 @@ create_mounter_control (XfcePanelPlugin *plugin)
 
 mounter = g_new0(t_mounter,1);
 
-/* default mount command */
-mounter->on_mount_cmd = NULL;
-
-mounter->icon = NULL;
+/* default configuration values for when no configuration is found */
+mounter->icon = 
PACKAGE_DATA_DIR"/icons/hicolor/scalable/apps/xfce-mount.svg";
+mounter->mount_command = DEFAULT_MOUNT_COMMAND;
+mounter->umount_command = DEFAULT_UMOUNT_COMMAND;
+mounter->on_mount_cmd = "";
+mounter->excluded_filesystems = "";
+mounter->message_dialog = FALSE;
+mounter->include_NFSs = FALSE;
+mounter->exclude_FSs = FALSE;
+mounter->eject_drives = FALSE;
+mounter->exclude_devicenames = FALSE;
+mounter->use_sudo = FALSE;
 
 mounter->plugin = plugin;
 
@@ -574,16 +538,12 @@ mounter_apply_options (t_mounter_dialog *md)
 t_mounter * mt = md->mt;
 TRACE ("enters mounter_apply_options");
 
-tmp = gtk_entry_get_text (GTK_ENTRY(md->string_cmd));
 
 incl_NFSs = mt->include_NFSs;
 excl_FSs = mt->exclude_FSs;
 
-g_free (mt->on_mount_cmd);
-if (tmp && *tmp)
-mt->on_mount_cmd = g_strdup (tmp);
-else
-mt->on_mount_cmd = NULL;
+mt->on_mount_cmd = g_strdup ( tmp = gtk_entry_get_text
+  (GTK_ENTRY(md->string_cmd)) );
 
 if ( gtk_toggle_button_get_active
 (GTK_TOGGLE_BUTTON(md->specify_commands)) ) {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Portuguese (pt) translation to None%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to a87adfa8361e215c532041c2a6505d8c84ca94d4 (commit)
   from cde28389068238645c0835ef22d53c52ba616d3b (commit)

commit a87adfa8361e215c532041c2a6505d8c84ca94d4
Author: Sergio Marques 
Date:   Thu Apr 12 11:52:53 2012 +0200

l10n: Updated Portuguese (pt) translation to None%

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

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

 po/pt.po |   26 --
 1 files changed, 16 insertions(+), 10 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index cf42e0f..c3a1284 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -2,34 +2,40 @@
 # Copyright (C) 2010 THE transd'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the transd package.
 # Sérgio Marques  2010
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: transd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-06 10:05+\n"
+"POT-Creation-Date: 2012-04-12 08:09+\n"
 "PO-Revision-Date: 2012-01-12 12:57-\n"
 "Last-Translator: Sérgio Marques \n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
 "X-Poedit-Language: Portuguese\n"
 "X-Poedit-Country: Portugal\n"
 
-#: ../src/transd.c:116
-msgid "Configuration format changed."
-msgstr "Alterou o formato da configuração."
-
-#: ../src/transd.c:117
-msgid "Transd now uses a new configuration file format.  Please see the README 
for details.  Transd will now exit."
-msgstr "O Transd utiliza um novo formato de configuração. Por favor, veja o 
README para detalhes. O Transd vai terminar."
+#: ../src/transd.c:192
+#, c-format
+msgid ""
+"Transd now uses a new configuration file format.  Please see the README for "
+"details.  Transd will now exit.\n"
+msgstr ""
+"O Transd utiliza um novo formato de configuração. Por favor, veja o README "
+"para detalhes. O Transd vai terminar."
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
-msgstr "Um serviço para vigiar e definir a transparência das janelas com base 
em regras"
+msgstr ""
+"Um serviço para vigiar e definir a transparência das janelas com base em "
+"regras"
 
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "Serviço de transparência"
 
+#~ msgid "Configuration format changed."
+#~ msgstr "Alterou o formato da configuração."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 12cb10acde57999af47cb6d2d032845a714bbf7a (commit)
   from 0473ba087fb9b91204a9ee70f0b0e44339b3bff3 (commit)

commit 12cb10acde57999af47cb6d2d032845a714bbf7a
Author: Piarres Beobide 
Date:   Thu Apr 12 11:49:54 2012 +0200

l10n: Updated Basque (eu) translation to 100%

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

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

 po/eu.po |   29 +++--
 1 files changed, 15 insertions(+), 14 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 5bd3f5b..2a4b918 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-03 07:15+\n"
+"POT-Creation-Date: 2012-04-12 04:27+\n"
 "PO-Revision-Date: 2009-08-21 11:07+0200\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: Euskara\n"
@@ -234,23 +234,24 @@ msgid "_Proceed"
 msgstr "_Aurrera"
 
 #: ../settings/session-editor.c:212
-msgid "You might need to delete some files manually in "
-msgstr "Zenbait fitxategi eskuz ezabatu beharko dituzu hemen: "
+#, c-format
+msgid "You might need to delete some files manually in \"%s\"."
+msgstr "Hemendik zenbait fitxategi eskuz ezabatu beharko dituzu: \"%s\"."
 
-#: ../settings/session-editor.c:216
+#: ../settings/session-editor.c:215
 msgid "All Xfce cache files could not be cleared"
 msgstr "Ezin da Xflock4 abiarazi"
 
-#: ../settings/session-editor.c:250
+#: ../settings/session-editor.c:249
 #, c-format
 msgid "Are you sure you want to terminate \"%s\"?"
 msgstr "Ziur zaude \"%s\" amaitu nahi duzula?"
 
-#: ../settings/session-editor.c:253 ../settings/session-editor.c:281
+#: ../settings/session-editor.c:252 ../settings/session-editor.c:280
 msgid "Terminate Program"
 msgstr "Amaitu programa"
 
-#: ../settings/session-editor.c:255
+#: ../settings/session-editor.c:254
 msgid ""
 "The application will lose any unsaved state and will not be restarted in "
 "your next session."
@@ -258,32 +259,32 @@ msgstr ""
 "Aplikazioak gorde gabeko edozein egoera galduko eta ez da hurrengo saioan "
 "abiaraziko."
 
-#: ../settings/session-editor.c:257
+#: ../settings/session-editor.c:256
 #: ../settings/xfce4-session-settings.glade.h:40
 msgid "_Quit Program"
 msgstr "I_rten programatik"
 
-#: ../settings/session-editor.c:282
+#: ../settings/session-editor.c:281
 msgid "Unable to terminate program."
 msgstr "Ezin da programa amaitu"
 
-#: ../settings/session-editor.c:460
+#: ../settings/session-editor.c:459
 msgid "(Unknown program)"
 msgstr "(Programa ezezaguna)"
 
-#: ../settings/session-editor.c:680
+#: ../settings/session-editor.c:679
 msgid "Priority"
 msgstr "Lehentasuna"
 
-#: ../settings/session-editor.c:688
+#: ../settings/session-editor.c:687
 msgid "PID"
 msgstr "PIDa"
 
-#: ../settings/session-editor.c:694
+#: ../settings/session-editor.c:693
 msgid "Program"
 msgstr "Programa"
 
-#: ../settings/session-editor.c:719
+#: ../settings/session-editor.c:718
 msgid "Restart Style"
 msgstr "Berrabiarazte estiloa"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to d3381daf349c3bb89aa974dfdd02626b9f0044a7 (commit)
   from 34e64ffee0b309a05c6fab795d71ae9a0e60bcd7 (commit)

commit d3381daf349c3bb89aa974dfdd02626b9f0044a7
Author: Piarres Beobide 
Date:   Thu Apr 12 11:48:23 2012 +0200

l10n: Updated Basque (eu) translation to 100%

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

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

 po/eu.po |   15 ++-
 1 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index afccce5..d4a7f3b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -108,7 +108,7 @@ msgstr "Leiho kudeatzaile ezarpenak"
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
 msgid "Configure layout, names and margins"
-msgstr ""
+msgstr "Konfiguratu diseinua, izenak eta ertzak"
 
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
@@ -676,9 +676,8 @@ msgid "At the _center of the screen"
 msgstr "Panatailaren er_dian"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:9
-#, fuzzy
 msgid "Automaticaly _tile windows when moving toward the screen edge"
-msgstr "Automatikoki _goratu leihoak fokua dutenean"
+msgstr "Automatikoki _goratu leihoak pantaila ertzetik mugitzean"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:10
 msgid "By default, place windows:"
@@ -843,7 +842,7 @@ msgstr "_Idazmahaiak"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:2
 msgid "Layout"
-msgstr ""
+msgstr "Diseinua"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:3
 msgid ""
@@ -851,18 +850,16 @@ msgid ""
 msgstr "Marjinak pantailaren ertzetan leihorik kokatu ezin den eremuak dira"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:4
-#, fuzzy
 msgid "Names"
-msgstr "Izena:"
+msgstr "Izenak"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:6
 msgid "_General"
-msgstr ""
+msgstr "_Orokorra"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:7
-#, fuzzy
 msgid "_Margins"
-msgstr "Marjinak"
+msgstr "_Ertzak"
 
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:8
 msgid "_Number of workspaces:"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Basque (eu) translation to 97%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 34e64ffee0b309a05c6fab795d71ae9a0e60bcd7 (commit)
   from 382befcd102c295e51573ea5432066979995470a (commit)

commit 34e64ffee0b309a05c6fab795d71ae9a0e60bcd7
Author: Piarres Beobide 
Date:   Thu Apr 12 11:45:49 2012 +0200

l10n: Updated Basque (eu) translation to 97%

New status: 229 messages complete with 3 fuzzies and 3 untranslated.

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

 po/eu.po |  524 +++---
 1 files changed, 260 insertions(+), 264 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 7fe3d29..afccce5 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -2,21 +2,21 @@
 # Euskara translation of xfwm4.
 # Copyright (C) 2002-2006 The Xfce development team.
 # This file is distributed under the same license as the xfwm4 package.
-#
+# 
 # Piarres Beobide Egaña , 2004, 2006, 2007, 2008.
 # Piarres Beobide , 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: eu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 18:54+0200\n"
+"POT-Creation-Date: 2012-04-12 06:18+\n"
 "PO-Revision-Date: 2009-12-15 11:54+0100\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: Basque \n"
-"Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: eu\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Lokalize 1.0\n"
 
@@ -86,237 +86,237 @@ msgid "Settings manager socket"
 msgstr "Ezarpena kudeatzaile socketa"
 
 #: ../settings-dialogs/xfce-wm-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-dialog.glade.h:1
-msgid "Window Manager"
-msgstr "Leiho kudeatzailea"
-
-#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:29
 msgid "Configure window behavior and shortcuts"
 msgstr "Leiho portaera eta lastre-teklak konfiguratu"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:1
-msgid "Window Manager Tweaks"
-msgstr "Leiho kudeatzaile ezarpenak"
+#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:48
+msgid "Window Manager"
+msgstr "Leiho kudeatzailea"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:16
 msgid "Fine-tune window behaviour and effects"
 msgstr "Leiho portaera eta efektuak doitu"
 
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:36
+msgid "Window Manager Tweaks"
+msgstr "Leiho kudeatzaile ezarpenak"
+
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
+msgid "Configure layout, names and margins"
+msgstr ""
+
+#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
 msgid "Workspaces"
 msgstr "Idazmahaiak"
 
-#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:2
-msgid "Configure layout, names and margins"
-msgstr ""
+#: ../settings-dialogs/xfwm4-dialog.glade.h:1
+msgid "Box move and resize"
+msgstr "Kutxa tamaina aldatzea eta mugitzea"
+
+#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+msgid "Button layout"
+msgstr "Botoi-diseinua"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:3
-msgid "_Theme"
-msgstr "_Gaia"
+msgid "Double click _action"
+msgstr "Klik bikoitzaren ekintza"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:4
-msgid "Title fon_t"
-msgstr "Izenburuaren karak_tere-jokoa"
+msgid "Focus model"
+msgstr "Foku modeloa"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:5
-msgid "Title _alignment"
-msgstr "Izenburu _lerrokatzea"
+msgid "New window focus"
+msgstr "Leiho berri fokoa"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:6
-msgid "Click and drag the buttons to change the layout"
-msgstr "Klikatu eta arratratu botoiak ingurunea eraldatzeko"
+msgid "Raise on click"
+msgstr "Bistaratu klikatzerakoan"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:7
-msgid "Title"
-msgstr "Izenburua"
+msgid "Raise on focus"
+msgstr "Goratu fokuaz"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:8
-msgid "The window title cannot be removed"
-msgstr "Leiho izenburua ezin da ezabatu"
+msgid "Title _alignment"
+msgstr "Izenburu _lerrokatzea"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:9
-msgid "Active"
-msgstr "Gaiturik"
+msgid "Title fon_t"
+msgstr "Izenburuaren karak_tere-jokoa"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:10
-msgid "Menu"
-msgstr "Menua"
+msgid "Window _shortcuts"
+msgstr "Leiho laster-teklak"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:11
-msgid "Stick"
-msgstr "Finkatu"
+msgid "Windows snapping"
+msgstr "Leiho itsasgarritasuna

[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 0473ba087fb9b91204a9ee70f0b0e44339b3bff3 (commit)
   from e278d60e9c6c2275347384c953f0c5eaaee7cded (commit)

commit 0473ba087fb9b91204a9ee70f0b0e44339b3bff3
Author: Jari Rahkonen 
Date:   Thu Apr 12 11:23:13 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |  508 ++
 1 files changed, 209 insertions(+), 299 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index 3ce217b..4d9901e 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -2,20 +2,28 @@
 # Copyright (C) 2003-2011 The Xfce Development Team.
 # This file is distributed under the same license as the xfce4-session package.
 # Juha Kautto , 2004.
-# Jari Rahkonen , 2005-2011.
+# Jari Rahkonen , 2005-2012.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-05-29 10:12+\n"
-"PO-Revision-Date: 2011-05-29 13:36+0300\n"
+"POT-Creation-Date: 2012-04-12 04:27+\n"
+"PO-Revision-Date: 2012-04-12 12:21+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
+
+#: ../xfce.desktop.in.h:1
+msgid "Use this session to run Xfce as your desktop environment"
+msgstr "Valitse tämä istunto käyttääksesi Xfce-työpöytäympäristöä "
+
+#: ../xfce.desktop.in.h:2
+msgid "Xfce Session"
+msgstr "Xfce-istunto"
 
 #: ../engines/balou/balou-theme.c:110
 msgid "No description given"
@@ -131,97 +139,13 @@ msgstr "Yksinkertainen"
 msgid "Simple Splash Engine"
 msgstr "Yksinkertainen käynnistyskuvateema"
 
-#: ../panel-plugin/xfsm-logout-plugin.c:86
-msgid "Session"
-msgstr "Istunto"
+#: ../scripts/xscreensaver.desktop.in.h:1
+msgid "Launch screensaver and locker program"
+msgstr "Käynnistä näytönsäästäjä ja lukitusohjelma"
 
-#: ../panel-plugin/xfsm-logout-plugin.c:87
-msgid "Loc_k screen"
-msgstr "Lukitse _näyttö"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:88
-#: ../panel-plugin/xfsm-logout-plugin.c:128
-msgid "_Suspend"
-msgstr "Ke_skeytystila"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:89
-#: ../panel-plugin/xfsm-logout-plugin.c:135 ../xfce4-session/shutdown.c:599
-msgid "_Hibernate"
-msgstr "L_epotila"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:90
-#: ../panel-plugin/xfsm-logout-plugin.c:121
-msgid "_Reboot"
-msgstr "Käynnistä _uudelleen"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:91
-#: ../panel-plugin/xfsm-logout-plugin.c:114
-msgid "Shut _down"
-msgstr "Sa_mmuta"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:92
-#: ../panel-plugin/xfsm-logout-plugin.c:107
-msgid "_Log out"
-msgstr "Ki_rjaudu ulos"
-
-#. XFSM_SHUTDOWN_ASK
-#. XFSM_SHUTDOWN_LOGOUT
-#: ../panel-plugin/xfsm-logout-plugin.c:105
-msgid "Are you sure you want to log out?"
-msgstr "Haluatko varmasti kirjautua ulos?"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:106
-#, c-format
-msgid "You will be logged out in %u seconds."
-msgstr "Sinut kirjataan ulos %u sekunnin kuluttua."
-
-#: ../panel-plugin/xfsm-logout-plugin.c:109
-msgid "Failed to log out."
-msgstr "Uloskirjaus epäonnistui."
-
-#. XFSM_SHUTDOWN_HALT
-#: ../panel-plugin/xfsm-logout-plugin.c:112
-msgid "Are you sure you want to shut down?"
-msgstr "Haluatko varmasti sammuttaa järjestelmän?"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:113
-#, c-format
-msgid "Your system will shut down in %u seconds."
-msgstr "Järjestelmä sammuu %u sekunnin kuluttua."
-
-#: ../panel-plugin/xfsm-logout-plugin.c:116
-msgid "Failed to shut down."
-msgstr "Sammutus epäonnistui"
-
-#. XFSM_SHUTDOWN_REBOOT
-#: ../panel-plugin/xfsm-logout-plugin.c:119
-msgid "Are you sure you want to reboot?"
-msgstr "Haluatko varmasti käynnistää uudelleen?"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:120
-#, c-format
-msgid "Your system will reboot in %u seconds."
-msgstr "Käynnistetään uudelleen %u sekunnin kuluttua."
-
-#: ../panel-plugin/xfsm-logout-plugin.c:123
-msgid "Failed to reboot."
-msgstr "Uudelleenkäynnistys epäonnistui."
-
-#: ../panel-plugin/xfsm-logout-plugin.c:130
-msgid "Failed to suspend"
-msgstr "Keskeytystilaan asettaminen epäonnistui"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:137
-msgid "Failed to hibernate"
-msgstr "Lepotilaan asettaminen epäonnistui"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:150
-msgid "Xflock4 could not be launched"
-msgstr "Sovelluksen Xflock4 suoritus epäonnistui"
-
-#: ../panel-plugin/xfsm-logout-plugin.c:222
-msgid "Close Session"
-msgstr "Sulje istunto"
+#: ../scripts/xscreensaver.desktop.in.h:2
+msgid "Screensaver"
+msgstr "Näytönsäästäjä"
 
 #: ../settings/main.c:43
 msgid "Settings manager socket"
@@ -235,25 +159,27 @@ msgstr "PISTOKE"
 msgid "Version information"
 msgstr "Versiotiedot"
 
-#: ../settings/main.c:74
+#: ../settings/main.c:75 ../xfce4-session/main.c:257
 #, c-format
 

[Xfce4-commits] Rewrite disk_mount/umount

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 18a314fcfdb8e1bbf9d50f68e21db73279614aaa (commit)
   from 6bc2c0daa7f9e7e113a860e602f8d95b03c9a794 (commit)

commit 18a314fcfdb8e1bbf9d50f68e21db73279614aaa
Author: Landry Breuil 
Date:   Thu Apr 12 11:11:01 2012 +0200

Rewrite disk_mount/umount

- use g_spawn_command_line_sync()
- separate commands instead of running them in a single shell
- error out early if any of the commands fail
- better error reporting, showing command return code & stderr
- add hack to make eject -t work on OpenBSD
- sanitize string handling
- show confirmation/error message dialog directly from disk_umount
- two new strings: "Returned" and "error was"

 panel-plugin/devices.c  |  165 --
 panel-plugin/devices.h  |6 +-
 panel-plugin/mount-plugin.c |   35 +-
 3 files changed, 97 insertions(+), 109 deletions(-)

diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
index 5b89689..7a11692 100644
--- a/panel-plugin/devices.c
+++ b/panel-plugin/devices.c
@@ -29,6 +29,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 #include 
 #include 
 #include 
+/* WEXITSTATUS */
+#include 
+#include 
 #ifdef HAVE_GETMNTENT
 #include 
 #include 
@@ -235,50 +238,69 @@ disk_free(t_disk **pdisk)
 void
 disk_mount (t_disk *pdisk, char *on_mount_cmd, char* mount_command, gboolean 
eject, gboolean use_sudo)
 {
-gchar *tmp=NULL, *cmd, *tmp2 = NULL;
+gchar *tmp = NULL, *cmd = NULL;
+gchar *output = NULL, *erroutput = NULL;
+int exit_status = 0;
 GError *error = NULL;
 gboolean val;
 
-DBG("disk_mount: eject=%d, use_sudo=%d\n", eject, use_sudo);
-
 if (pdisk != NULL)
 {
+DBG("disk_mount: dev=%s, mountpoint=%s, mount_command=%s, 
on_mount_cmd=%s, eject=%d, use_sudo=%d", pdisk->device, pdisk->mount_point, 
mount_command, on_mount_cmd, eject, use_sudo);
+if (eject) {
+#ifdef __OpenBSD__
+/* hack: on OpenBSD, eject(1) -t expects cd0/cd1 (or rcd0c/rcd1c), if passed 
/dev/cdXa it will spit 'No medium found' */
+tmp = g_strstr_len(pdisk->device, strlen(pdisk->device), 
"/dev/cd");
+if (tmp) {
+cmd = g_strconcat ("eject -t cd", tmp + 7, NULL);
+/* remove chars after cdX */
+cmd[12] = '\0';
+tmp = NULL;
+}
+else
+cmd = g_strconcat ("eject -t ", pdisk->device, NULL);
+#else
+cmd = g_strconcat ("eject -t ", pdisk->device, NULL);
+#endif
+val = g_spawn_command_line_sync (cmd, &output, &erroutput, 
&exit_status, &error);
+DBG("cmd: '%s', returned %d, exit_status=%d", cmd, val, 
exit_status);
+if (val == FALSE || exit_status != 0)
+   goto out;
+g_free(cmd);
+cmd = NULL;
+}
 deviceprintf (&tmp, mount_command, pdisk->device);
-mountpointprintf (&tmp2, tmp, pdisk->mount_point);
-/* re-use tmp */
-g_free(tmp);
-tmp = NULL;
-if (use_sudo)
-tmp = g_strdup ("sudo sh -c '");
-else
-tmp = g_strdup ("sh -c '");
-
-if (eject)
-cmd = g_strconcat (tmp, " eject -t ", pdisk->device, " && ", tmp2, 
NULL);
-else
-cmd = g_strconcat (tmp, tmp2, NULL);
-
-g_free(tmp);
-g_free(tmp2);
-tmp = NULL;
-tmp2 = NULL;
+mountpointprintf (&cmd, tmp, pdisk->mount_point);
+/* cmd contains mount_command device mount_point */
+if (use_sudo) {
+g_free(tmp);
+tmp = g_strdup(cmd);
+g_free(cmd);
+cmd = g_strconcat ("sudo ", tmp, NULL);
+}
+val = g_spawn_command_line_sync (cmd, &output, &erroutput, 
&exit_status, &error);
+DBG("cmd: '%s', returned %d, exit_status=%d", cmd, val, exit_status);
+if (val == FALSE || exit_status != 0)
+   goto out;
 
 if (on_mount_cmd != NULL && strlen(on_mount_cmd)!=0) {
+g_free(tmp);
+tmp = NULL;
+g_free(cmd);
+cmd = NULL;
 deviceprintf(&tmp, on_mount_cmd, pdisk->device);
-mountpointprintf(&tmp2, tmp, pdisk->mount_point);
-cmd = g_strconcat (cmd, " && ", tmp2, " '", NULL);
+mountpointprintf(&cmd, tmp, pdisk->mount_point);
+val = g_spawn_command_line_sync (cmd, &output, &erroutput, 
&exit_status, &error);
+DBG("cmd: '%s', returned %d, exit_status=%d", cmd, val, 
exit_status);
 }
-else
-cmd = g_strconcat (cmd, " '", NULL);
-
-val = xfce_spawn_command_line_on_screen(gdk_screen_get_default(), cmd, 
FALSE, FALSE, &error);
-DBG("cmd: '%s', returned %d \n", cmd, val);
-if (val)
-xfce_dialog_show_error (NULL, error, _("Mount Plugin: Error 
executing command."));
-
+out:
 g_free(cmd);
-g_free

[Xfce4-commits] No need to add \n, DBG() and TRACE() takes care of that

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 590352a5570703f6533767139d1fabf42cf75bb7 (commit)
   from 18a314fcfdb8e1bbf9d50f68e21db73279614aaa (commit)

commit 590352a5570703f6533767139d1fabf42cf75bb7
Author: Landry Breuil 
Date:   Thu Apr 12 11:22:44 2012 +0200

No need to add \n, DBG() and TRACE() takes care of that

 panel-plugin/devices.c  |   12 ++--
 panel-plugin/mount-plugin.c |8 
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
index 7a11692..2b26f5e 100644
--- a/panel-plugin/devices.c
+++ b/panel-plugin/devices.c
@@ -559,13 +559,13 @@ exclude_filesystem (GPtrArray *excluded_FSs, gchar 
*mountpoint, gchar *device)
 {
 unsigned int i;
 
-TRACE("Entering exclude_filesystems\n");
+TRACE("Entering exclude_filesystems");
 
 g_assert(excluded_FSs != NULL);
 
 for (i=0; i < excluded_FSs->len; i++)
 {
-DBG("Comparing %s and %s to %s\n", mountpoint, device, (gchar *) 
g_ptr_array_index(excluded_FSs, i));
+DBG("Comparing %s and %s to %s", mountpoint, device, (gchar *) 
g_ptr_array_index(excluded_FSs, i));
 if (g_ascii_strcasecmp (
 (gchar *) g_ptr_array_index(excluded_FSs, i), mountpoint)==0
 ||
@@ -575,7 +575,7 @@ exclude_filesystem (GPtrArray *excluded_FSs, gchar 
*mountpoint, gchar *device)
 return TRUE;
 }
 
-TRACE("Leaving exclude_filesystems with FALSE\n");
+TRACE("Leaving exclude_filesystems with FALSE");
 
 return FALSE;
 }
@@ -602,7 +602,7 @@ disks_refresh(GPtrArray * pdisks, GPtrArray *excluded_FSs)
 t_mount_info * mount_info;
 t_disk * pdisk ;
 
-TRACE("Entering disks_refresh\n");
+TRACE("Entering disks_refresh");
 
 /* remove t_mount_info for all devices */
 disks_free_mount_info (pdisks);
@@ -622,12 +622,12 @@ disks_refresh(GPtrArray * pdisks, GPtrArray *excluded_FSs)
 #ifdef HAVE_GETMNTENT
 for (pmntent=getmntent(fmtab); pmntent!=NULL; pmntent=getmntent(fmtab)) {
 
-DBG (" have entry: %s on %s \n", pmntent->mnt_fsname, pmntent->mnt_dir 
);
+DBG (" have entry: %s on %s", pmntent->mnt_fsname, pmntent->mnt_dir );
 
 statfs (pmntent->mnt_dir, pstatfs);
 #elif HAVE_GETMNTINFO
 for (i = 0; i < nb_mounted_fs ; i++) {
-DBG (" have entry: %s on %s : type %s\n", pstatfs[i].f_mntfromname, 
pstatfs[i].f_mntonname, pstatfs[i].f_fstypename );
+DBG (" have entry: %s on %s : type %s", pstatfs[i].f_mntfromname, 
pstatfs[i].f_mntonname, pstatfs[i].f_fstypename );
 #endif
 
 /* if we got the stat and the block number is non-zero */
diff --git a/panel-plugin/mount-plugin.c b/panel-plugin/mount-plugin.c
index 951718b..a5f99f0 100644
--- a/panel-plugin/mount-plugin.c
+++ b/panel-plugin/mount-plugin.c
@@ -281,7 +281,7 @@ mounter_data_new (t_mounter *mt)
 /* remove unwanted file systems from list */
 if (mt->exclude_FSs) {
 array = g_ptr_array_new();
-DBG("excluded_filesystems=%s\n", mt->excluded_filesystems);
+DBG("excluded_filesystems=%s", mt->excluded_filesystems);
 res = seperate_list(array, mt->excluded_filesystems);
 for (i=0; ilen; i++) {
 dev_mp = (char*) g_ptr_array_index(array, i);
@@ -351,7 +351,7 @@ mounter_refresh (t_mounter * mt)
 umount = g_strdup (mt->umount_command);
 icon = g_strdup (mt->icon);
 excl_filesystems = g_strdup (mt->excluded_filesystems);
-DBG ("Changed icon value from '%s' to '%s'.\n", mt->icon, icon);
+DBG ("Changed icon value from '%s' to '%s'.", mt->icon, icon);
 msg_dlg = mt->message_dialog;
 incl_NFSs = mt->include_NFSs;
 excl_FSs = mt->exclude_FSs;
@@ -361,7 +361,7 @@ mounter_refresh (t_mounter * mt)
 
 mounter_data_new (mt);
 mt->icon = g_strdup (icon);
-DBG ("Changed icon value from '%s' to '%s'.\n", icon, mt->icon);
+DBG ("Changed icon value from '%s' to '%s'.", icon, mt->icon);
 mt->mount_command = g_strdup (mount);
 mt->umount_command = g_strdup (umount);
 mt->excluded_filesystems = g_strdup (excl_filesystems);
@@ -913,7 +913,7 @@ mounter_create_options (XfcePanelPlugin *plugin, t_mounter 
*mt)
 GTK_FILL, GTK_SHRINK, 0, 0);
 
 md->string_mount_command = gtk_entry_new ();
-DBG("mt->mount_command: %s\n", mt->mount_command);
+DBG("mt->mount_command: %s", mt->mount_command);
 gtk_entry_set_text (GTK_ENTRY(md->string_mount_command ),
 g_strdup(mt->mount_command ));
 gtk_widget_show (md->string_mount_command );
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Also match if 'cd' is in the device name for OpenBSD

2012-04-12 Thread Landry Breuil
Updating branch refs/heads/master
 to 6bc2c0daa7f9e7e113a860e602f8d95b03c9a794 (commit)
   from ea71dd842b6425b534be613d54da17e82bb1fdca (commit)

commit 6bc2c0daa7f9e7e113a860e602f8d95b03c9a794
Author: Landry Breuil 
Date:   Thu Apr 12 11:10:32 2012 +0200

Also match if 'cd' is in the device name for OpenBSD

 panel-plugin/devices.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/panel-plugin/devices.c b/panel-plugin/devices.c
index 986a979..5b89689 100644
--- a/panel-plugin/devices.c
+++ b/panel-plugin/devices.c
@@ -693,7 +693,7 @@ disk_classify (char *device, char *mountpoint)
 dc = REMOTE;
 }
 }
-else if ( strstr(device, "cdrom") || strstr(device, "cdrw")
+else if ( strstr(device, "cdrom") || strstr(device, "cdrw") || 
strstr(device, "cd")
 || strstr(device, "dvd") || strstr(mountpoint, "cdrom")
 || strstr(mountpoint, "cdrw") || strstr(mountpoint, "dvd")) {
 dc = CD_DVD;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 99%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 26d7f3900866b3a622f523162ea564530ce3a433 (commit)
   from 1f065583693478316029426e15731ff9fba50326 (commit)

commit 26d7f3900866b3a622f523162ea564530ce3a433
Author: Piotr Sokół 
Date:   Thu Apr 12 11:21:57 2012 +0200

l10n: Updated Polish (pl) translation to 99%

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

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

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

diff --git a/po/pl.po b/po/pl.po
index d2dd049..fb83c9a 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,20 +3,21 @@
 # Copyright (C) 2009 The Xfce development team.
 # This file is distributed under the same license as the xfce-settings package.
 # Piotr Sokół , 2009, 2011, 2012.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-settings 4.7.7\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-04-12 04:36+\n"
-"PO-Revision-Date: 2012-04-10 16:51+0200\n"
+"PO-Revision-Date: 2012-04-12 11:16+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bits\n"
 "Language: \n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:1
 msgid "Acceleration _profile:"
@@ -285,8 +286,7 @@ msgstr "Konfiguruje ułatwienia dostępu interfejsów 
klawiatury i myszy"
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:1
 msgid ""
 "Anti-aliasing, or font smoothing, can improve the look of text on the screen"
-msgstr ""
-"Włącza antyaliasing czcionek w celu poprawy wyglądu tekstu na monitorze"
+msgstr "Wygładza czcionki w celu poprawy wyglądu tekstu na ekranie"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:2
 #: ../dialogs/appearance-settings/xfce-ui-settings.desktop.in.h:1
@@ -347,7 +347,7 @@ msgstr "Dzwięki zdarzeń"
 msgid ""
 "Font quality on a TFT or LCD screen can be greatly improved by choosing the "
 "correct sub-pixel order of the screen"
-msgstr "Określa rozmieszczenie subpikseli wyświetlacza TFT lub LCD"
+msgstr "Określa rozmieszczenie podpikseli wyświetlacza TFT lub LCD"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:16
 msgid "Full"
@@ -371,8 +371,8 @@ msgid ""
 "Many fonts contain information that provides extra hints as to how best draw "
 "the font; pick whichever looks best according to personal preference"
 msgstr ""
-"Określa metodę wygładzania czcionek, umożliwiającą poprawienie ich wyglądu "
-"na ekranie"
+"Określa metodę przyciągania czcionek krawędzi czcionek do siatki (np. "
+"pikseli matrycy ekranu), umożliwiającą poprawienie ich wyglądu na ekranie"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:20
 msgid "Medium"
@@ -393,7 +393,7 @@ msgid ""
 "Override the detected monitor resolution if fonts look too large or too small"
 msgstr ""
 "Określa rozdzielczość czcionek wyrażoną w ilości punktów na cal, niezależnie "
-"od rozdzielczości monitora"
+"od rozdzielczości ekranu"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:24
 msgid "Rendering"
@@ -437,11 +437,11 @@ msgstr ""
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:33
 msgid "St_yle"
-msgstr "Mo_tyw"
+msgstr "_Styl"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:34
 msgid "Sub-_pixel order:"
-msgstr "Układ su_bpikseli:"
+msgstr "Układ po_dpikseli:"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:35
 msgid "Text"
@@ -461,7 +461,7 @@ msgstr "Czci_onki"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:38
 msgid "_Hinting:"
-msgstr "_Wygładzanie podpikselowe:"
+msgstr "_Przyciąganie do siatki:"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:39
 msgid "_Icons"
@@ -566,9 +566,8 @@ msgid "Ro_tation:"
 msgstr "_Orientacja:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:7
-#, fuzzy
 msgid "_Use this output"
-msgstr "Wypisuje bardziej szczegółowe komunikaty"
+msgstr "_Użyj tego wyjścia"
 
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:1
 msgid "Both displays cloned"
@@ -631,10 +630,12 @@ msgstr "%.1f Hz"
 msgid ""
 "The last active output must not be disabled, the system would be unusable."
 msgstr ""
+"Ostanie aktywne wyjście nie może być wyłączone. Komputer nie będzie zdatny "
+"do użycia."
 
 #: ../dialogs/display-settings/main.c:653
 msgid "Selected output not disabled"
-msgstr ""
+msgstr "Zaznaczone wyjście nie jest wyłączone"
 
 #: ../dialogs/display-settings/main.c:1075
 #: ../dialogs/display-settings/xfce-randr.c:249
@@ -1038,7 +1039,7 @@ msgstr "Pytanie"
 msgid ""
 "This will remove your custom mime-association and restore the system-wide "
 "default."
-msgstr ""
+msgstr "

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 4795632b261cfb02f4981c10c933185a31dc66a1 (commit)
   from 4e3d4855ba5a72e1243b61d229378b836a352bda (commit)

commit 4795632b261cfb02f4981c10c933185a31dc66a1
Author: Roger Pueyo Centelles 
Date:   Thu Apr 12 11:09:22 2012 +0200

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

New status: 101 messages complete with 143 fuzzies and 23 untranslated.

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

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

diff --git a/po/ca.po b/po/ca.po
index 39720ac..eaf0fc7 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -4,19 +4,19 @@
 # This file is distributed under the same license as the
 # postler package.
 # Carles Muñoz Gorriz , 2011-2012.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: postler\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-15 14:54+\n"
+"POT-Creation-Date: 2012-04-12 07:21+\n"
 "PO-Revision-Date: 2012-01-15 19:00+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \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: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Catalan\n"
 "X-Poedit-SourceCharset: utf-8\n"
@@ -30,16 +30,13 @@ msgstr "Ajustaments de la interfície d'usuari"
 msgid "Mail reader"
 msgstr "Lector de correu"
 
-#: ../data/postler.desktop.in.h:3
-#: ../postler/postler-reader.vala:44
+#: ../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-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"
@@ -80,14 +77,14 @@ msgid "Config folder couldn't be created."
 msgstr "No s'ha pogut crear la carpeta"
 
 #: ../postler/postler-accounts.vala:325
-#, fuzzy, c-format
+#, c-format
 msgid "Failed to remove \"%s\""
-msgstr "No s'ha pogut suprimir «%s»"
+msgstr "No s'ha pogut suprimir \"%s\""
 
 #: ../postler/postler-accounts.vala:402
-#, fuzzy, c-format
+#, c-format
 msgid "Invalid type \"%s\""
-msgstr "(tipus invàlid)"
+msgstr "Tipus invàlid \"%s\""
 
 #. i18n: File was found but can't contains invalid values
 #: ../postler/postler-accounts.vala:406
@@ -100,16 +97,13 @@ msgstr "No s'ha pogut analitzar una línia en %s: %s"
 msgid "Cache folder couldn't be created."
 msgstr "No s'ha pogut crear la carpeta"
 
-#: ../postler/postler-accounts.vala:462
-#: ../postler/postler-accounts.vala:605
-#: ../postler/postler-accounts.vala:623
-#: ../postler/postler-accounts.vala:643
+#: ../postler/postler-accounts.vala:462 ../postler/postler-accounts.vala:605
+#: ../postler/postler-accounts.vala:623 ../postler/postler-accounts.vala:643
 #, fuzzy, c-format
 msgid "Account \"%s\" can't receive mail."
 msgstr "No es pot crear la cua de correu per a l'usuari %s.\n"
 
-#: ../postler/postler-accounts.vala:626
-#: ../postler/postler-accounts.vala:646
+#: ../postler/postler-accounts.vala:626 ../postler/postler-accounts.vala:646
 #, fuzzy
 msgid "Mail folder couldn't be created."
 msgstr "No s'ha pogut crear la carpeta"
@@ -171,9 +165,8 @@ msgid "imap.example.com"
 msgstr "imap.example.com"
 
 #: ../postler/postler-accountsetup.vala:110
-#, fuzzy
 msgid "POP3 is not supported."
-msgstr "No es pot marcar."
+msgstr "POP3 no està suportat."
 
 #: ../postler/postler-accountsetup.vala:129
 #, fuzzy
@@ -255,8 +248,7 @@ msgstr "La darrera cerca a la Web emmagatzemada"
 msgid "Update Saved Search"
 msgstr "Actualitza el camí de cerca"
 
-#: ../postler/postler-app.vala:91
-#: ../postler/postler-bureau.vala:415
+#: ../postler/postler-app.vala:91 ../postler/postler-bureau.vala:415
 msgid "New _Account"
 msgstr "_Compte nou"
 
@@ -277,9 +269,8 @@ msgid "_Forward"
 msgstr "_Reenvia"
 
 #: ../postler/postler-app.vala:111
-#, fuzzy
 msgid "Mark as _Important"
-msgstr "Marca en blau"
+msgstr "Marca com a _Important"
 
 #: ../postler/postler-app.vala:112
 #, fuzzy
@@ -323,8 +314,7 @@ msgstr "correu rebut"
 msgid "Failed to launch external application."
 msgstr "No s'ha pogut executar l'aplicació externa."
 
-#: ../postler/postler-app.vala:195
-#: ../postler/postler-content.vala:274
+#: ../postler/postler-app.vala:195 ../postler/postler-content.vala:274
 #, fuzzy
 msgid "Failed to execute external command."
 msgstr "No s'ha pogut executar l'ordre d'OCR:"
@@ -339,8 +329,7 @@ msgstr "No s'ha pogut obrir «%s»."
 msgid "Failed to initialize."
 msgstr "no s'ha pogut inicialitzar la base de dades de confian�a: %s\n"
 
-#: ../postler/postler-app.vala:238
-#: ../postler/pos

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 9ff4fcbbbd973cb62a534a8d0fd27bf395b6ba72 (commit)
   from 3fad63a919da05c150139c0cb3661d544fdcf5c8 (commit)

commit 9ff4fcbbbd973cb62a534a8d0fd27bf395b6ba72
Author: Roger Pueyo Centelles 
Date:   Thu Apr 12 11:07:22 2012 +0200

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

New status: 161 messages complete with 1 fuzzy and 11 untranslated.

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

 po/ca.po |  320 +-
 1 files changed, 211 insertions(+), 109 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 6aa9c8f..71d21ae 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -6,19 +6,19 @@
 # Carles Muñoz Gorriz , 2008-2012.
 # Harald Servat , 2009.
 # Pol Ruzafa , 2011.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: ristretto\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
-"POT-Creation-Date: 2012-03-31 12:39+\n"
+"POT-Creation-Date: 2012-04-12 07:24+\n"
 "PO-Revision-Date: 2012-03-31 19:21+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \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: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Catalan\n"
 
@@ -56,306 +56,350 @@ msgid "Image Viewer"
 msgstr "Visor d'imatges"
 
 #. File Menu
-#: ../src/main_window.c:330
+#: ../src/main_window.c:350
 msgid "_File"
 msgstr "_Fitxer"
 
-#: ../src/main_window.c:331
+#: ../src/main_window.c:351
 msgid "_Open"
 msgstr "_Obre"
 
-#: ../src/main_window.c:331
+#: ../src/main_window.c:351
 msgid "Open an image"
 msgstr "Obre una imatge"
 
-#: ../src/main_window.c:332
+#: ../src/main_window.c:352
 msgid "_Save copy"
 msgstr "_Desa una còpia"
 
-#: ../src/main_window.c:332
+#: ../src/main_window.c:352
 msgid "Save a copy of the image"
 msgstr "Desa una còpia de la imatge"
 
-#: ../src/main_window.c:333
+#: ../src/main_window.c:353
 msgid "_Properties"
 msgstr "_Propietats"
 
-#: ../src/main_window.c:333
+#: ../src/main_window.c:353
 msgid "Show file properties"
 msgstr "Mostra les propietats del fitxer"
 
 #. Edit Menu
-#: ../src/main_window.c:334 ../src/main_window.c:338
+#: ../src/main_window.c:354 ../src/main_window.c:358
 msgid "_Edit"
 msgstr "_Edita"
 
-#: ../src/main_window.c:334
+#: ../src/main_window.c:354
 msgid "Edit this image"
 msgstr "Edita aquesta imatge"
 
-#: ../src/main_window.c:335
+#: ../src/main_window.c:355
 msgid "_Close"
 msgstr "_Tanca"
 
-#: ../src/main_window.c:335
+#: ../src/main_window.c:355
 msgid "Close this image"
 msgstr "Tanca aquesta finestra"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:356
 msgid "_Quit"
 msgstr "_Surt"
 
-#: ../src/main_window.c:336
+#: ../src/main_window.c:356
 msgid "Quit Ristretto"
 msgstr "Surt de Ristretto"
 
-#: ../src/main_window.c:339
+#: ../src/main_window.c:359
 msgid "_Open with..."
 msgstr "_Obre amb…"
 
-#: ../src/main_window.c:340
+#: ../src/main_window.c:360
 msgid "_Sorting"
 msgstr "_Ordenació"
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:361
 msgid "_Delete"
 msgstr "_Esborra"
 
-#: ../src/main_window.c:341
+#: ../src/main_window.c:361
 msgid "Delete this image from disk"
 msgstr "Esborra aquesta imatge del disc"
 
-#: ../src/main_window.c:342
+#: ../src/main_window.c:362
 msgid "_Clear private data"
 msgstr "_Neteja l'informació privada"
 
-#: ../src/main_window.c:343
+#: ../src/main_window.c:363
 msgid "_Preferences"
 msgstr "_Preferències"
 
 #. View Menu
-#: ../src/main_window.c:345
+#: ../src/main_window.c:365
 msgid "_View"
 msgstr "_Mostra"
 
-#: ../src/main_window.c:346
+#: ../src/main_window.c:366
 msgid "_Fullscreen"
 msgstr "_Pantalla completa"
 
-#: ../src/main_window.c:347
+#: ../src/main_window.c:366
+msgid "Switch to fullscreen"
+msgstr "Canvia al mode de pantalla completa"
+
+#: ../src/main_window.c:367
 msgid "_Leave Fullscreen"
 msgstr "_Surt de la pantalla completa"
 
-#: ../src/main_window.c:348
+#: ../src/main_window.c:367
+msgid "Leave Fullscreen"
+msgstr "Surt del mode de pantalla completa"
+
+#: ../src/main_window.c:368
 msgid "_Set as Wallpaper"
 msgstr "Posa com _fons d'escriptori"
 
 #. Zoom submenu
-#: ../src/main_window.c:350
+#: ../src/main_window.c:370
 msgid "_Zoom"
 msgstr "_Zoom"
 
-#: ../src/main_window.c:351
+#: ../src/main_window.c:371
 msgid "Zoom _In"
 msgstr "Ampl_ia"
 
-#: ../src/main_window.c:352
+#: ../src/main_window.c:371
+msgid "Zoom in"
+msgstr "Amplia"
+
+#: ../src/main_window.c:372
 msgid "Zoom _Out"
 msgstr "Red_ueix"
 
-#: ../src/main_window.c:353
+#: ../src/main_window.c:372
+msgid "Zoom out"
+msgstr "Redueix"
+
+#: ../src/main_window.c:373
 msgid "Zoom _Fit"
 msgstr "_Ajusta"
 
-#: ../src/main_window.c:354
+#: ../src/main_window.c:373
+msgid "Zoom to fit window"
+msgstr "Encaixa a la finestra"
+
+#: ../src/main_window.c:374
 msgid "_Normal Size"
 msgstr "Mida _normal"
 
+#: ../src/main_window.c:374
+msgi

[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 6caa4cc93893b16d7b2bf6f951038350074e85ee (commit)
   from 9e4f2ab4462bc4cf6d1cd4e6d417e030e2c60b4c (commit)

commit 6caa4cc93893b16d7b2bf6f951038350074e85ee
Author: Jari Rahkonen 
Date:   Thu Apr 12 11:06:00 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |  441 +++---
 1 files changed, 251 insertions(+), 190 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index 55f9caa..af95e0b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -2,20 +2,20 @@
 # Copyright (C) 2003-2011 The Xfce Development Team.
 # This file is distributed under the same license as the xfdesktop package.
 # Ilkka Ollakka , 2004.
-# Jari Rahkonen , 2005-2011.
+# Jari Rahkonen , 2005-2012.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.8.x\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-29 17:29+\n"
-"PO-Revision-Date: 2011-01-29 20:50+0200\n"
+"POT-Creation-Date: 2012-04-12 05:51+\n"
+"PO-Revision-Date: 2012-04-12 12:05+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
@@ -23,7 +23,7 @@ msgid "Backdrop list file is not valid"
 msgstr "Tiedosto ei ole kelvollinen taustakuvalista."
 
 #. no need to escape markup; it's already done for us
-#: ../settings/main.c:163
+#: ../settings/main.c:166
 #, c-format
 msgid ""
 "%s\n"
@@ -32,127 +32,127 @@ msgstr ""
 "%s\n"
 "Koko: %dx%d"
 
-#: ../settings/main.c:289 ../src/xfdesktop-special-file-icon.c:256
-#: ../src/xfdesktop-special-file-icon.c:419
+#: ../settings/main.c:299 ../src/xfdesktop-special-file-icon.c:271
+#: ../src/xfdesktop-special-file-icon.c:434
 msgid "Home"
 msgstr "Kotikansio"
 
-#: ../settings/main.c:291
+#: ../settings/main.c:301
 msgid "Filesystem"
 msgstr "Tiedostojärjestelmä"
 
-#: ../settings/main.c:293
+#: ../settings/main.c:303
 msgid "Trash"
 msgstr "Roskakori"
 
-#: ../settings/main.c:295
+#: ../settings/main.c:305
 msgid "Removable Devices"
 msgstr "Irrotettavat taltiot"
 
-#: ../settings/main.c:475
+#: ../settings/main.c:485
 #, c-format
 msgid "Cannot create backdrop list \"%s\""
 msgstr "Ei voi luoda taustakuvalistaa \"%s\"."
 
-#: ../settings/main.c:479 ../settings/main.c:802
+#: ../settings/main.c:489 ../settings/main.c:862
 msgid "Backdrop List Error"
 msgstr "Taustakuvalistavirhe"
 
-#: ../settings/main.c:504
+#: ../settings/main.c:514
 msgid "Create/Load Backdrop List"
 msgstr "Luo/lataa taustakuvalista"
 
-#: ../settings/main.c:528
+#: ../settings/main.c:538
 #, c-format
 msgid ""
 "File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
 msgstr "Tiedosto \"%s\" ei ole kelvollinen taustakuvalista. Korvataanko se?"
 
-#: ../settings/main.c:533
+#: ../settings/main.c:543
 msgid "Invalid List File"
 msgstr "Taustakuvalista ei kelpaa"
 
-#: ../settings/main.c:536
+#: ../settings/main.c:546
 msgid "Overwriting the file will cause its contents to be lost."
 msgstr "Jos korvaat tiedoston, sen sisältö menetetään."
 
-#: ../settings/main.c:538
+#: ../settings/main.c:548
 msgid "Replace"
 msgstr "Korvaa"
 
-#: ../settings/main.c:798
+#: ../settings/main.c:858
 #, c-format
 msgid "Failed to write backdrop list to \"%s\""
 msgstr "Taustakuvalistan kirjoitus epäonnistui kohteeseen \"%s\"."
 
-#: ../settings/main.c:825
+#: ../settings/main.c:885
 msgid "Add Image File(s)"
 msgstr "Lisää kuvatiedosto(ja)"
 
-#: ../settings/main.c:834
+#: ../settings/main.c:894
 msgid "Image files"
 msgstr "Kuvatiedostot"
 
-#: ../settings/main.c:839
+#: ../settings/main.c:899
 msgid "All files"
 msgstr "Kaikki tiedostot"
 
-#: ../settings/main.c:1271
+#: ../settings/main.c:1356
 #, c-format
 msgid "Screen %d, Monitor %d (%s)"
 msgstr "Näyttö %d, Monitori %d (%s)"
 
-#: ../settings/main.c:1275
+#: ../settings/main.c:1360
 #, c-format
 msgid "Screen %d, Monitor %d"
 msgstr "Näyttö %d, Monitori %d"
 
-#: ../settings/main.c:1278
+#: ../settings/main.c:1363
 #, c-format
 msgid "Screen %d"
 msgstr "Näyttö %d"
 
-#: ../settings/main.c:1283
+#: ../settings/main.c:1368
 #, c-format
 msgid "Monitor %d (%s)"
 msgstr "Monitori %d (%s)"
 
-#: ../settings/main.c:1287
+#: ../settings/main.c:1372
 #, c-format
 msgid "Monitor %d"
 msgstr "Monitori %d"
 
-#: ../settings/main.c:1500
+#: ../settings/main.c:1631
 msgid "Settings manager socket"
 msgstr "Asetustenhallinnan pistoke"
 
-#: ../settings/main.c:1500
+#: ../settings/main.c:1631
 msgid "SOCKET ID"
 msgstr "PISTOKE"
 
-#: ../settings/main.c:1501
+#: ../settings/main.c:1632
 msgid "Version information"
 msgstr "Versiotiedot"
 
-#: ../settings/main.c:1521
+#: ../settings/main.c:1649
 #, c-format
 msgid "Type '%s

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 382befcd102c295e51573ea5432066979995470a (commit)
   from bda44b954a9baaa35e47de19cde3ee9d368d9f61 (commit)

commit 382befcd102c295e51573ea5432066979995470a
Author: Roger Pueyo Centelles 
Date:   Thu Apr 12 11:03:49 2012 +0200

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

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

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

 po/ca.po |  531 +++---
 1 files changed, 264 insertions(+), 267 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 72a0331..2161c6c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,22 +2,22 @@
 # Window manager for Xfce desktop environment.
 # Copyright (C) 2002-2006 The Xfce development team.
 # This file is distributed under the same license as the xfwm4 package.
-#
+# 
 # Carles Muñoz Gorriz  2003-2004, 2006, 2008-2011.
 # Pau Ruŀlan Ferragut  2005-2007.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 18:54+0200\n"
+"POT-Creation-Date: 2012-04-12 06:18+\n"
 "PO-Revision-Date: 2011-12-06 21:28+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \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: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Catalan\n"
 "X-Poedit-SourceCharset: utf-8\n"
@@ -88,241 +88,241 @@ msgid "Settings manager socket"
 msgstr "Sòcol del gestor d'ajustaments"
 
 #: ../settings-dialogs/xfce-wm-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-dialog.glade.h:1
-msgid "Window Manager"
-msgstr "Gestor de finestres"
-
-#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:29
 msgid "Configure window behavior and shortcuts"
 msgstr "Configura el comportament de les finestres i de les dreceres"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:1
-msgid "Window Manager Tweaks"
-msgstr "Ajustaments avançats del gestor de finestres"
+#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:48
+msgid "Window Manager"
+msgstr "Gestor de finestres"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:16
 msgid "Fine-tune window behaviour and effects"
 msgstr "Ajusta el comportament i els efectes de les finestres"
 
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:36
+msgid "Window Manager Tweaks"
+msgstr "Ajustaments avançats del gestor de finestres"
+
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
+msgid "Configure layout, names and margins"
+msgstr "Configura la disposició, els noms i els marges"
+
+#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
 msgid "Workspaces"
 msgstr "Espais de treball"
 
-#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:2
-msgid "Configure layout, names and margins"
-msgstr ""
+#: ../settings-dialogs/xfwm4-dialog.glade.h:1
+msgid "Box move and resize"
+msgstr "Moure i redimensionar finestres"
+
+#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+msgid "Button layout"
+msgstr "Disseny dels botons"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:3
-msgid "_Theme"
-msgstr "_Tema"
+msgid "Double click _action"
+msgstr "_Acció del doble clic"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:4
-msgid "Title fon_t"
-msgstr "Font del _títol"
+msgid "Focus model"
+msgstr "Tipus d'enfocament"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:5
-msgid "Title _alignment"
-msgstr "_Alineació del títol"
+msgid "New window focus"
+msgstr "Enfocament de les finestres noves"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:6
-msgid "Click and drag the buttons to change the layout"
-msgstr "Pitgeu i arrossegueu els botons per canviar el disseny"
+msgid "Raise on click"
+msgstr "Primer pla al pitjar"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:7
-msgid "Title"
-msgstr "Títol"
+msgid "Raise on focus"
+msgstr "Primer pla al enfocar"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:8
-msgid "The window title cannot be removed"
-msgstr "El títol de la finestra no es pot treure"
+msgid "Title _alignment"
+msgstr "_Alineació del títol"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:9
-msgid "Active"
-msgstr "Actiu"
+msgid "Title fon_t"
+msgstr "Font del _títol"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:10
-ms

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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 2949205a47d69469d63749b5f02c7fbc8de36467 (commit)
   from 14fcfbac5260637b3bf0c20c088beac131f6b9f3 (commit)

commit 2949205a47d69469d63749b5f02c7fbc8de36467
Author: Roger Pueyo Centelles 
Date:   Thu Apr 12 11:02:49 2012 +0200

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index 369e255..38cd448 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-appfinder 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-06 10:27+\n"
+"POT-Creation-Date: 2012-04-12 08:24+\n"
 "PO-Revision-Date: 2012-01-15 20:39+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \n"
 "Language-Team: Catalan\n"
@@ -74,21 +74,25 @@ msgstr "L'acció personalitzada s'esborrarà de forma 
permanent."
 msgid "Are you sure you want to delete pattern \"%s\"?"
 msgstr "Voleu esborrar el patró «%s»?"
 
-#: ../src/appfinder-window.c:216 ../src/main.c:446
+#: ../src/appfinder-window.c:219 ../src/main.c:446
 #: ../src/appfinder-preferences.glade.h:4
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid "Application Finder"
 msgstr "Cercador d'aplicacions"
 
-#: ../src/appfinder-window.c:268
+#: ../src/appfinder-window.c:271
 msgid "Toggle view mode"
 msgstr "Canvia el mode de vista"
 
-#: ../src/appfinder-window.c:763
+#: ../src/appfinder-window.c:363
+msgid "La_unch"
+msgstr "Exec_uta"
+
+#: ../src/appfinder-window.c:798
 msgid "Failed to launch desktop item editor"
 msgstr "No s'ha pogut executar l'editor d'elements de l'escriptori"
 
-#: ../src/appfinder-window.c:789
+#: ../src/appfinder-window.c:824
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
@@ -96,18 +100,18 @@ msgstr ""
 "Això esborrarà permanentment el fitxer d'escriptori personalitzar del vostre "
 "directori personal."
 
-#: ../src/appfinder-window.c:790
+#: ../src/appfinder-window.c:825
 #, c-format
 msgid "Are you sure you want to revert \"%s\"?"
 msgstr "Voleu revertir «%s»?"
 
-#: ../src/appfinder-window.c:800
+#: ../src/appfinder-window.c:835
 msgid "Failed to remove desktop file"
 msgstr "No s'ha pogut treure el fitxer d'escriptori"
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:833
+#: ../src/appfinder-window.c:868
 #, c-format
 msgid ""
 "To unhide the item you have to manually remove the desktop file from \"%s\" "
@@ -116,11 +120,11 @@ msgstr ""
 "Per amagar l'element heu d'esborrar manualment el fitxer d'escriptori de "
 "«%s» o obrir el fitxer en el mateix directori i esborrar la línia «%s»."
 
-#: ../src/appfinder-window.c:838 ../src/appfinder-window.c:923
+#: ../src/appfinder-window.c:873 ../src/appfinder-window.c:958
 msgid "_Hide"
 msgstr "_Amaga"
 
-#: ../src/appfinder-window.c:839
+#: ../src/appfinder-window.c:874
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
 msgstr "Voleu amagar «%s»?"
@@ -223,7 +227,10 @@ msgid ""
 "Instead of quitting the application when the last window is closed, keep a "
 "running instance to speed up opening new windows. You might want to disable "
 "this to reduce memory usage."
-msgstr "En comptes de sortir de l'aplicació quan es tanqui la darrera 
finestra, mantingues una instància oberta per accelerar l'inici de noves 
finestres. Potser voldríeu deshabilitar això per tal de reduir l'ús de memòria."
+msgstr ""
+"En comptes de sortir de l'aplicació quan es tanqui la darrera finestra, "
+"mantingues una instància oberta per accelerar l'inici de noves finestres. "
+"Potser voldríeu deshabilitar això per tal de reduir l'ús de memòria."
 
 #: ../src/appfinder-preferences.glade.h:15
 msgid "Ite_m icon size:"
@@ -335,9 +342,6 @@ msgstr "Executa un programa"
 #~ msgid "C_lose after launch"
 #~ msgstr "_Tanca després d'executar"
 
-#~ msgid "Launch"
-#~ msgstr "Executa"
-
 #~ msgid "Could not load menu from %s"
 #~ msgstr "No s'ha pogut carregar el menú de %s"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to e278d60e9c6c2275347384c953f0c5eaaee7cded (commit)
   from c44f594cf344fa7ea0ff9695cfda419c758e6a66 (commit)

commit e278d60e9c6c2275347384c953f0c5eaaee7cded
Author: Roger Pueyo Centelles 
Date:   Thu Apr 12 11:02:40 2012 +0200

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index a581f6e..fffbf29 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -4,21 +4,21 @@
 # This file is distributed under the same license as the xfce4-session package.
 # Carles Muñoz Gorriz , 2003-2004, 2006, 2008-2012.
 # Pau Rul·lan Ferragut  2005, 2006.
-#
+# 
 # Sleep --> Baix consum.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-session 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-31 09:39+\n"
+"POT-Creation-Date: 2012-04-12 04:27+\n"
 "PO-Revision-Date: 2012-03-31 17:31+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \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"
@@ -242,23 +242,24 @@ msgid "_Proceed"
 msgstr "_Procedeix"
 
 #: ../settings/session-editor.c:212
-msgid "You might need to delete some files manually in "
-msgstr "Pot ser haureu d'esborrar alguns fitxers manualment"
+#, c-format
+msgid "You might need to delete some files manually in \"%s\"."
+msgstr "Potser haureu d'esborrar manualment alguns fitxers a \"%s\"."
 
-#: ../settings/session-editor.c:216
+#: ../settings/session-editor.c:215
 msgid "All Xfce cache files could not be cleared"
 msgstr "No s'ha pogut netejar tots els fitxers de la memòria cau de sessions"
 
-#: ../settings/session-editor.c:250
+#: ../settings/session-editor.c:249
 #, c-format
 msgid "Are you sure you want to terminate \"%s\"?"
 msgstr "Esteu segur que voleu finalitzar «%s»?"
 
-#: ../settings/session-editor.c:253 ../settings/session-editor.c:281
+#: ../settings/session-editor.c:252 ../settings/session-editor.c:280
 msgid "Terminate Program"
 msgstr "Finalitza el programa"
 
-#: ../settings/session-editor.c:255
+#: ../settings/session-editor.c:254
 msgid ""
 "The application will lose any unsaved state and will not be restarted in "
 "your next session."
@@ -266,32 +267,32 @@ msgstr ""
 "L'aplicació perdrà qualssevol estat no desat i no es reiniciarà a la vostre "
 "següent sessió."
 
-#: ../settings/session-editor.c:257
+#: ../settings/session-editor.c:256
 #: ../settings/xfce4-session-settings.glade.h:40
 msgid "_Quit Program"
 msgstr "_Surt del programa"
 
-#: ../settings/session-editor.c:282
+#: ../settings/session-editor.c:281
 msgid "Unable to terminate program."
 msgstr "No s'ha pogut finalitzar el programa."
 
-#: ../settings/session-editor.c:460
+#: ../settings/session-editor.c:459
 msgid "(Unknown program)"
 msgstr "(Programa desconegut)"
 
-#: ../settings/session-editor.c:680
+#: ../settings/session-editor.c:679
 msgid "Priority"
 msgstr "Prioritat"
 
-#: ../settings/session-editor.c:688
+#: ../settings/session-editor.c:687
 msgid "PID"
 msgstr "PID"
 
-#: ../settings/session-editor.c:694
+#: ../settings/session-editor.c:693
 msgid "Program"
 msgstr "Programa"
 
-#: ../settings/session-editor.c:719
+#: ../settings/session-editor.c:718
 msgid "Restart Style"
 msgstr "Tipus de reinici"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 9e4f2ab4462bc4cf6d1cd4e6d417e030e2c60b4c (commit)
   from 02590f710040f3d7b2b88a6d1bed4e4d73fb5ec0 (commit)

commit 9e4f2ab4462bc4cf6d1cd4e6d417e030e2c60b4c
Author: Roger Pueyo Centelles 
Date:   Thu Apr 12 11:00:22 2012 +0200

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index 5bd2501..44831b0 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,21 +2,21 @@
 # xfdesktop for XFce desktop environment.
 # Copyright (C) 2003-2006 The Xfce development team.
 # This file is distributed under the same license as the xfdesktop package.
-#
+# 
 # Carles Muñoz Gorriz , 2003-2004, 2006, 2008-2010, 
2012.
 # Pau Ruŀlan Ferragut , 2005-2007.
 msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-31 11:03+\n"
+"POT-Creation-Date: 2012-04-12 05:51+\n"
 "PO-Revision-Date: 2012-03-31 17:46+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \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: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Catalan\n"
 "X-Poedit-SourceCharset: utf-8\n"
@@ -378,7 +378,7 @@ msgstr "B_otó:"
 msgid "Control"
 msgstr "Control"
 
-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:789
+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:793
 msgid "Desktop"
 msgstr "Escriptori"
 
@@ -620,13 +620,13 @@ msgstr "Sup_rimeix l'espai de treball %d"
 msgid "_Remove Workspace '%s'"
 msgstr "Sup_rimeix l'espai de treball «%s»"
 
-#: ../src/xfce-desktop.c:1078
+#: ../src/xfce-desktop.c:1082
 #, c-format
 msgid "Unable to load image from backdrop list file \"%s\""
 msgstr ""
 "No s'han pogut carregar les imatges de la llista d'imatges de fons «%s»"
 
-#: ../src/xfce-desktop.c:1080
+#: ../src/xfce-desktop.c:1084
 msgid "Desktop Error"
 msgstr "Error de l'escriptori"
 
@@ -758,7 +758,7 @@ msgstr "Obre amb"
 
 #: ../src/xfdesktop-file-icon-manager.c:1614
 msgid "Open With Other _Application..."
-msgstr "Obre amb un altre _aplicació…"
+msgstr "Obre amb una altra _aplicació…"
 
 #: ../src/xfdesktop-file-icon-manager.c:1706
 msgid "_Rename..."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 14fcfbac5260637b3bf0c20c088beac131f6b9f3 (commit)
   from e22487a584ce7b45bbb5b98a1fcbb9e1777f6d2f (commit)

commit 14fcfbac5260637b3bf0c20c088beac131f6b9f3
Author: Jari Rahkonen 
Date:   Thu Apr 12 10:44:19 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |   11 +++
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index af5d5f3..584689a 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-appfinder 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-28 10:15+\n"
-"PO-Revision-Date: 2012-03-28 17:20+0200\n"
+"POT-Creation-Date: 2012-04-12 02:39+\n"
+"PO-Revision-Date: 2012-04-12 11:18+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -80,6 +80,10 @@ msgstr "Sovellusten hakutyökalu"
 msgid "Toggle view mode"
 msgstr "Vaihda näkymää"
 
+#: ../src/appfinder-window.c:363
+msgid "La_unch"
+msgstr "_Käynnistä"
+
 #: ../src/appfinder-window.c:798
 msgid "Failed to launch desktop item editor"
 msgstr "Käynnistineditorin käynnistys epäonnistui"
@@ -88,8 +92,7 @@ msgstr "Käynnistineditorin käynnistys epäonnistui"
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
-msgstr ""
-"Tämä poistaa mukautetun käynnistimen kotikansiostasi pysyvästi."
+msgstr "Tämä poistaa mukautetun käynnistimen kotikansiostasi pysyvästi."
 
 #: ../src/appfinder-window.c:825
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to bda44b954a9baaa35e47de19cde3ee9d368d9f61 (commit)
   from c3479d558a4efd167d99459c5d34837e76961962 (commit)

commit bda44b954a9baaa35e47de19cde3ee9d368d9f61
Author: Jari Rahkonen 
Date:   Thu Apr 12 10:43:17 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |  527 ++---
 1 files changed, 259 insertions(+), 268 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index eb8deec..54b8647 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,14 +1,14 @@
 # Translation of xfwm4 package into Finnish.
 # Copyright (C) 2002-2010 Olivier Fourdan.
 # This file is distributed under the same license as the xfwm4 package.
-# Jari Rahkonen , 2005-2010.
+# Jari Rahkonen , 2005-2012.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfwm4 4.7.x\n"
+"Project-Id-Version: xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 18:54+0200\n"
-"PO-Revision-Date: 2010-12-07 15:40+0200\n"
+"POT-Creation-Date: 2012-04-12 06:18+\n"
+"PO-Revision-Date: 2012-14-12 11:41+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
 "Language: fi\n"
@@ -81,238 +81,237 @@ msgid "Settings manager socket"
 msgstr "Asetustenhallinnan pistoke"
 
 #: ../settings-dialogs/xfce-wm-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-dialog.glade.h:1
-msgid "Window Manager"
-msgstr "Ikkunamanageri"
-
-#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:29
 msgid "Configure window behavior and shortcuts"
 msgstr "Muokkaa ikkunoiden käytöstä ja pikanäppäimiä"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:1
-msgid "Window Manager Tweaks"
-msgstr "Ikkunamanagerin viritys"
+#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:48
+msgid "Window Manager"
+msgstr "Ikkunamanageri"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:16
 msgid "Fine-tune window behaviour and effects"
 msgstr "Hienosäädä ikkunoiden käytöstä ja tehosteita"
 
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:36
+msgid "Window Manager Tweaks"
+msgstr "Ikkunamanagerin viritys"
+
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
+msgid "Configure layout, names and margins"
+msgstr "Muokkaa asettelua, nimiä ja reunuksia"
+
+#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
 msgid "Workspaces"
 msgstr "Työtilat"
 
-#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:2
-msgid "Configure layout, names and margins"
-msgstr ""
+#: ../settings-dialogs/xfwm4-dialog.glade.h:1
+msgid "Box move and resize"
+msgstr "Siirto- ja kokolaatikko"
+
+#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+msgid "Button layout"
+msgstr "Painikkeiden asettelu"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:3
-msgid "_Theme"
-msgstr "_Teema"
+msgid "Double click _action"
+msgstr "K_aksoisnapsautus"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:4
-msgid "Title fon_t"
-msgstr "Otsakkeen _kirjasin"
+msgid "Focus model"
+msgstr "Kohdistustapa"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:5
-msgid "Title _alignment"
-msgstr "Otsakkeen ta_saus"
+msgid "New window focus"
+msgstr "Uuden ikkunan kohdistus"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:6
-msgid "Click and drag the buttons to change the layout"
-msgstr "Raahaa painikkeita muuttaaksesi asettelua"
+msgid "Raise on click"
+msgstr "Nosta napsauttaessa"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:7
-msgid "Title"
-msgstr "Otsake"
+msgid "Raise on focus"
+msgstr "Nosta kohdistaessa"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:8
-msgid "The window title cannot be removed"
-msgstr "Ikkunan otsaketta ei voi poistaa"
+msgid "Title _alignment"
+msgstr "Otsakkeen ta_saus"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:9
-msgid "Active"
-msgstr "Esillä"
+msgid "Title fon_t"
+msgstr "Otsakkeen _kirjasin"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:10
-msgid "Menu"
-msgstr "Valikko"
+msgid "Window _shortcuts"
+msgstr "Ikkunoiden _pikanäppäimet"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:11
-msgid "Stick"
-msgstr "Kiinnitä"
+msgid "Windows snapping"
+msgstr "Ikkunoiden loksahtaminen"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:12
-msgid "Shade"
-msgstr "Varjosta"
+msgid "Wrap workspaces"
+msgstr "Kierrätä työtiloja"
 
 #: ..

[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 349508583b655d558a6302fae29546884cab9c10 (commit)
   from a69672821130954e4826a6990bf22bd804bc9d2f (commit)

commit 349508583b655d558a6302fae29546884cab9c10
Author: Piotr Sokół 
Date:   Thu Apr 12 10:41:34 2012 +0200

l10n: Updated Polish (pl) translation to 100%

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

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

 po/pl.po |   52 
 1 files changed, 28 insertions(+), 24 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index f631116..5a3e42c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,39 +1,39 @@
 # Polish translations for libxfce4ui package.
 # Copyright (C) 2011 The Xfce development team.
 # This file is distributed under the same license as the libxfce4ui package.
-# Piotr Sokół , 2011.
-# 
+# Piotr Sokół , 2011, 2012.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-07 11:45+\n"
-"PO-Revision-Date: 2007-01-20 23:10+0200\n"
-"Last-Translator: Piotr Maliński \n"
-"Language-Team: Polish <>\n"
+"POT-Creation-Date: 2012-04-12 06:45+\n"
+"PO-Revision-Date: 2012-04-12 10:40+0200\n"
+"Last-Translator: Piotr Sokół \n"
+"Language-Team: polski <>\n"
+"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
+"Content-Transfer-Encoding: 8bits\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../libxfce4ui/xfce-dialogs.c:80
-#, fuzzy
 msgid "Failed to open web browser for online documentation"
-msgstr "Nie udało się uruchomić przeglądarki internetowej w celu wyświetlenia 
zdalnej dokumentacji"
+msgstr ""
+"Nie udało się uruchomić przeglądarki internetowej w celu wyświetlenia "
+"zdalnej dokumentacji"
 
 #: ../libxfce4ui/xfce-dialogs.c:195
-#, c-format, fuzzy
+#, c-format
 msgid "Do you want to read the %s manual online?"
 msgstr "Wyświetlić zdalny podręcznik programu %s?"
 
 #: ../libxfce4ui/xfce-dialogs.c:197
-#, fuzzy
 msgid "Do you want to read the manual online?"
 msgstr "Wyświetlić zdalny podręcznik?"
 
 #: ../libxfce4ui/xfce-dialogs.c:200
-#, fuzzy
 msgid "Online Documentation"
 msgstr "Zdalna dokumentacja"
 
@@ -42,14 +42,16 @@ msgid ""
 "You will be redirected to the documentation website where the help pages are "
 "maintained and translated."
 msgstr ""
+"Przeglądarka otworzy stronę dokumentacji, na której tworzone są podręczniki "
+"użytkownika i gdzie następuje ich tłumaczenie."
 
 #: ../libxfce4ui/xfce-dialogs.c:207
 msgid "_Read Online"
-msgstr ""
+msgstr "_Wyświetl podręcznik"
 
 #: ../libxfce4ui/xfce-dialogs.c:219
 msgid "_Always go directly to the online documentation"
-msgstr ""
+msgstr "_Pomijanie tego pytania w przyszłości"
 
 #: ../libxfce4ui/xfce-dialogs.c:263
 msgid "Information"
@@ -69,7 +71,7 @@ msgstr "Pytanie"
 
 #: ../libxfce4ui/xfce-sm-client.c:1402
 msgid "Session management client ID"
-msgstr "ID klienta menadżera sesji"
+msgstr "Określa identyfikator klienta menedżera sesji"
 
 #: ../libxfce4ui/xfce-sm-client.c:1402
 msgid "ID"
@@ -77,7 +79,7 @@ msgstr "ID"
 
 #: ../libxfce4ui/xfce-sm-client.c:1403
 msgid "Disable session management"
-msgstr "Wyłącz zarządzanie sesją"
+msgstr "Wyłącza zarządzanie sesją"
 
 #: ../libxfce4ui/xfce-sm-client.c:1413
 msgid "Session management options"
@@ -85,7 +87,7 @@ msgstr "Opcje zarządzania sesją"
 
 #: ../libxfce4ui/xfce-sm-client.c:1414
 msgid "Show session management options"
-msgstr "Pokaż opcje zarządzania sesją"
+msgstr "Wypisuje opcje zarządzania sesją"
 
 #: ../libxfce4ui/xfce-sm-client.c:1590
 #, c-format
@@ -93,9 +95,9 @@ msgid "Failed to connect to the session manager: %s"
 msgstr "Nie udało się połączyć z menadżerem sesji: %s"
 
 #: ../libxfce4ui/xfce-sm-client.c:1597
-#, fuzzy, c-format
+#, c-format
 msgid "Session manager did not return a valid client id"
-msgstr "Menadżer sesji nie zwrócił poprawnego identifikatora klienta"
+msgstr "Menadżer sesji nie zwrócił poprawnego identyfikatora klienta"
 
 #. print warning for user
 #: ../libxfce4ui/xfce-spawn.c:406
@@ -104,6 +106,8 @@ msgid ""
 "Working directory \"%s\" does not exist. It won't be used when spawning \"%s"
 "\"."
 msgstr ""
+"Katalog roboczy „%s” nie istnieje. Nie zostanie on użyty podczas wywoływania "
+"„%s”."
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:52
 msgid ""
@@ -192,7 +196,6 @@ msgid "Could not grab the keyboard."
 msgstr "Nie można przechwycić klawiatury."
 
 #: ../glade/libxfce4ui.xml.in.h:1
-#, fuzzy
 msgid "Subtitle"
 msgstr "Podtytuł"
 
@@ -288,7 +291,8 @@ msgstr "Demon ustawień"
 
 #: ../xfce4-about/main.c:105
 msgid "D-Bus-based configuration storage system."
-msgstr "Przechowuje konfiguracje programów w oparciu o system D-Bus."
+msgstr

[Xfce4-commits] l10n: Updated Korean (ko) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to cde28389068238645c0835ef22d53c52ba616d3b (commit)
   from dfd4392034c9e45889fd5938e9c3e0d18df3703d (commit)

commit cde28389068238645c0835ef22d53c52ba616d3b
Author: Seong-ho Cho 
Date:   Thu Apr 12 10:30:56 2012 +0200

l10n: Updated Korean (ko) translation to 100%

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

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

 po/ko.po |   23 +++
 1 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index d61bd6b..0f37cfb 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,10 +6,10 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: transd.master\n"
-"Report-Msgid-Bugs-To: xfce-i18n \n"
-"POT-Creation-Date: 2011-11-15 14:54+\n"
-"PO-Revision-Date: 2012-02-21 14:44+0900\n"
-"Last-Translator: Seong-ho, Cho \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2012-04-12 08:09+\n"
+"PO-Revision-Date: 2012-04-12 17:30+0900\n"
+"Last-Translator: Seong-ho Cho \n"
 "Language-Team: xfce-i18n \n"
 "Language: ko\n"
 "MIME-Version: 1.0\n"
@@ -19,19 +19,18 @@ msgstr ""
 "X-Poedit-Language: Korean\n"
 "X-Poedit-Country: KOREA, REPUBLIC OF\n"
 
-#: ../src/transd.c:116
-msgid "Configuration format changed."
-msgstr "설정 형식을 바꾸었습니다."
-
-#: ../src/transd.c:117
-msgid "Transd now uses a new configuration file format.  Please see the README 
for details.  Transd will now exit."
-msgstr "Transd는 지금 새 설정 파일 형식을 사용하고 있습니다. 자세한 내용은 README를 보시기 바랍니다. Transd를 이제 
끝낼 것입니다."
+#: ../src/transd.c:192
+#, c-format
+msgid "Transd now uses a new configuration file format.  Please see the README 
for details.  Transd will now exit.\n"
+msgstr "Transd는 이제 새 설정 파일 형식을 사용합니다. 자세한 내용은 README를 보시기 바랍니다. Transd를 이제 끝낼 
것입니다.\n"
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
-msgstr "창을 감시하고 규칙 모음을 기반으로 하여 투명화를 설정하는 데몬"
+msgstr "창을 감시하고 규칙 모음을 기반으로 투명화를 설정하는 데몬입니다"
 
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "투명화 데몬"
 
+#~ msgid "Configuration format changed."
+#~ msgstr "설정 형식을 바꾸었습니다."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Finnish (fi) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to def589c6575f9b1595bf0e089d53b9c0095af69a (commit)
   from db32e84706c11d630eaf9f4ca054e01dc490a171 (commit)

commit def589c6575f9b1595bf0e089d53b9c0095af69a
Author: Jari Rahkonen 
Date:   Thu Apr 12 10:17:08 2012 +0200

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |   35 +++
 1 files changed, 11 insertions(+), 24 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index a030812..94160da 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,20 +1,20 @@
 # Finnish translations for thunar-volman.
 # Copyright (C) 2007 Benedikt Meurer.
 # This file is distributed under the same license as the thunar-volman package.
-# Jari Rahkonen , 2007-2011.
+# Jari Rahkonen , 2007-2012.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-07 14:39+0100\n"
-"PO-Revision-Date: 2011-05-29 13:09+0300\n"
+"POT-Creation-Date: 2012-04-12 08:00+\n"
+"PO-Revision-Date: 2012-04-12 11:16+0300\n"
 "Last-Translator: Jari Rahkonen \n"
 "Language-Team: Finnish \n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
 
 #: ../thunar-volman/main.c:59
 msgid "The syfs path of the newly added device"
@@ -31,25 +31,25 @@ msgid "Print version information and exit"
 msgstr "Tulosta versiotiedot ja poistu"
 
 #. setup application name
-#: ../thunar-volman/main.c:96
+#: ../thunar-volman/main.c:93
 msgid "Thunar Volume Manager"
 msgstr "Thunarin taltionhallinta"
 
-#: ../thunar-volman/main.c:135
+#: ../thunar-volman/main.c:119
 msgid "All rights reserved."
 msgstr "Kaikki oikeudet pidätetään."
 
-#: ../thunar-volman/main.c:136
+#: ../thunar-volman/main.c:120
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Ilmoita vioista osoitteeseen <%s>"
 
-#: ../thunar-volman/main.c:190
+#: ../thunar-volman/main.c:174
 #, c-format
 msgid "There is no device with the sysfs path \"%s\""
 msgstr "Sysfs-polku \"%s\" ei viittaa mihinkään laitteeseen."
 
-#: ../thunar-volman/main.c:202
+#: ../thunar-volman/main.c:186
 #, c-format
 msgid "Must specify the sysfs path of new devices with --device-added"
 msgstr "Määritä usien laitteiden sysfs-polut valitsimella --device-added"
@@ -217,10 +217,6 @@ msgstr "Tuntematon lohkolaite"
 msgid "Device type not supported"
 msgstr "Laitetyyppiä ei tueta"
 
-#: ../thunar-volman/tvm-input-device.c:74
-msgid "input-keyboard"
-msgstr "syöttö-näppäimistö"
-
 #: ../thunar-volman/tvm-input-device.c:75
 msgid "Keyboard detected"
 msgstr "Näppäimistö havaittu"
@@ -229,11 +225,6 @@ msgstr "Näppäimistö havaittu"
 msgid "A keyboard was detected"
 msgstr "Havaittiin näppäimistö."
 
-#: ../thunar-volman/tvm-input-device.c:86
-#: ../thunar-volman/tvm-input-device.c:100
-msgid "input-tablet"
-msgstr "syöttö-piirtopöytä"
-
 #: ../thunar-volman/tvm-input-device.c:87
 #: ../thunar-volman/tvm-input-device.c:101
 msgid "Tablet detected"
@@ -244,10 +235,6 @@ msgstr "Piirtopöytä havaittu"
 msgid "A graphics tablet was detected"
 msgstr "Havaittiin piirtöpöytä."
 
-#: ../thunar-volman/tvm-input-device.c:110
-msgid "input-mouse"
-msgstr "syöttö-hiiri"
-
 #: ../thunar-volman/tvm-input-device.c:111
 msgid "Mouse detected"
 msgstr "Hiiri havaittu"
@@ -522,7 +509,7 @@ msgid "Keyboards"
 msgstr "Näppäimistöt"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:593
-msgid "Automatically run a program when an USB _keyboard is connected"
+msgid "Automatically run a program when a USB _keyboard is connected"
 msgstr "Suorita sovellus, kun USB-_näppäimistö yhdistetään"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:615
@@ -530,7 +517,7 @@ msgid "Mice"
 msgstr "Hiiret"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:632
-msgid "Automatically run a program when an USB _mouse is connected"
+msgid "Automatically run a program when a USB _mouse is connected"
 msgstr "Suorita sovellus, kun USB-_hiiri yhdistetään"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:654
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 0ce2d1f0dba296c0e8019c96189b54a0c58b7af3 (commit)
   from bba06277038b6da60a190c01abaf071c2e0f060d (commit)

commit 0ce2d1f0dba296c0e8019c96189b54a0c58b7af3
Author: Piotr Sokół 
Date:   Thu Apr 12 10:16:05 2012 +0200

l10n: Updated Polish (pl) translation to 100%

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

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

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

diff --git a/po/pl.po b/po/pl.po
index ff5dde7..d7231f8 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfconf 4.7.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 12:57+\n"
+"POT-Creation-Date: 2012-04-12 05:45+\n"
 "PO-Revision-Date: 2011-11-27 13:42+0100\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: Polish <>\n"
@@ -155,11 +155,11 @@ msgstr "Uruchamia w tle. Użyteczne tylko do celów 
testowych."
 
 #: ../xfconfd/main.c:159
 msgid "Xfce Configuration Daemon"
-msgstr "Usługa konfiguracji Xfce"
+msgstr "Demon konfiguracji Xfce"
 
 #: ../xfconfd/main.c:165
 msgid "Xfce configuration daemon"
-msgstr "Usługa konfiguracji Xfce"
+msgstr "Demon konfiguracji Xfce"
 
 #: ../xfconfd/main.c:167
 msgid "Report bugs to http://bugs.xfce.org/\n";
@@ -173,7 +173,7 @@ msgstr "Błąd przetwarzania opcji: %s\n"
 #: ../xfconfd/xfconf-daemon.c:482
 #, c-format
 msgid "Another Xfconf daemon is already running"
-msgstr "W tej chwili jest uruchomiona inna usługa Xfconf"
+msgstr "W tej chwili jest uruchomiona inny demon Xfconf"
 
 #: ../xfconfd/xfconf-daemon.c:517
 #, c-format
@@ -226,7 +226,7 @@ msgstr "Przywraca domyślną właściwość"
 
 #: ../xfconf-query/main.c:212
 msgid "Recursive (use with -r)"
-msgstr "Wykonuje akcję rekursywnie (do użycia z opcją -r)"
+msgstr "Wykonuje czynność rekursywnie (do użycia z opcją -r)"
 
 #: ../xfconf-query/main.c:216
 msgid "Force array even if only one element"
@@ -238,7 +238,7 @@ msgstr "Przełącza istniejącą wartość logiczną właściwości"
 
 #: ../xfconf-query/main.c:224
 msgid "Monitor a channel for property changes"
-msgstr "Monitoruje zmiany właściwości kanału"
+msgstr "Śledzi zmiany właściwości kanału"
 
 #: ../xfconf-query/main.c:246
 #, c-format
@@ -283,12 +283,12 @@ msgstr "Opcje --create i --reset nie mogą być użyte wraz 
z opcją --list"
 #: ../xfconf-query/main.c:319
 #, c-format
 msgid "Start monitoring channel \"%s\":"
-msgstr "Monitorowanie kanału „%s”:"
+msgstr "Rozpoczęcie śledzenia zmian kanału „%s”:"
 
 #: ../xfconf-query/main.c:353 ../xfconf-query/main.c:458
 #: ../xfconf-query/main.c:527
 msgid "Failed to set property"
-msgstr "Nie udało się ustawić właściwości"
+msgstr "Nie udało się skonfigurować właściwości"
 
 #: ../xfconf-query/main.c:357
 msgid "--toggle only works with boolean values"
@@ -301,7 +301,7 @@ msgstr "(nieznany)"
 #: ../xfconf-query/main.c:375
 #, c-format
 msgid "Value is an array with %d items:"
-msgstr "Typ jest tablicą z %d elementami:"
+msgstr "Wartość jest tablicą z %d elementami:"
 
 #: ../xfconf-query/main.c:399
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 98%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 1f065583693478316029426e15731ff9fba50326 (commit)
   from 3b8bd5a934f0386fef3dfb2c8b41ca6432869003 (commit)

commit 1f065583693478316029426e15731ff9fba50326
Author: Piotr Sokół 
Date:   Thu Apr 12 10:07:40 2012 +0200

l10n: Updated Polish (pl) translation to 98%

New status: 325 messages complete with 2 fuzzies and 3 untranslated.

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

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

diff --git a/po/pl.po b/po/pl.po
index b08c1b7..d2dd049 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,21 +3,20 @@
 # Copyright (C) 2009 The Xfce development team.
 # This file is distributed under the same license as the xfce-settings package.
 # Piotr Sokół , 2009, 2011, 2012.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-settings 4.7.7\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 13:21+\n"
+"POT-Creation-Date: 2012-04-12 04:36+\n"
 "PO-Revision-Date: 2012-04-10 16:51+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
-"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bits\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
-"%100<10 || n%100>=20)) ? 1 : 2));\n"
+"Language: \n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:1
 msgid "Acceleration _profile:"
@@ -1529,14 +1528,13 @@ msgid "Bounce keys"
 msgstr "Odskakujące klawisze"
 
 #: ../xfsettingsd/keyboard-shortcuts.c:244
-#, fuzzy, c-format
+#, c-format
 msgid "Failed to launch shortcut \"%s\""
-msgstr "Nie można uruchomić „%s”"
+msgstr "Nie udało się uruchomić „%s”"
 
 #: ../xfsettingsd/main.c:78
-#, fuzzy
 msgid "Do not fork to the background"
-msgstr "Uruchamia w trybie debugowania (nie przechodzi w tło)"
+msgstr "Nie przechodzi do działania w tle"
 
 #: ../xfsettingsd/main.c:79
 msgid "Replace running xsettings daemon (if any)"
@@ -1556,9 +1554,8 @@ msgid "Settings dialog to show"
 msgstr "Określa okno dialogowe ustawień"
 
 #: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:186
-#, fuzzy
 msgid "_All Settings"
-msgstr "_Ustawienia"
+msgstr "_Wszystkie"
 
 #: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:366
 msgid "Settings"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 99%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to c44f594cf344fa7ea0ff9695cfda419c758e6a66 (commit)
   from 228468d49c9135e1ef283cc6c63a4e39a9b13279 (commit)

commit c44f594cf344fa7ea0ff9695cfda419c758e6a66
Author: Piotr Sokół 
Date:   Thu Apr 12 10:02:24 2012 +0200

l10n: Updated Polish (pl) translation to 99%

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

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

 po/pl.po |  104 +++--
 1 files changed, 53 insertions(+), 51 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index abc7e76..4a62600 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,21 +5,22 @@
 # Wit Wiliński , 2005.
 # Piotr Maliński , 2005, 2006.
 # Szymon Kałasz , 2006.
-# Piotr Sokół , 2009, 2011.
-# 
+# Piotr Sokół , 2009, 2011, 2012.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-session 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 13:12+\n"
-"PO-Revision-Date: 2011-03-24 22:34+0100\n"
+"POT-Creation-Date: 2012-04-12 04:27+\n"
+"PO-Revision-Date: 2012-04-12 10:00+0200\n"
 "Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish <>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
+"Language-Team: polski <>\n"
 "Language: pl\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bits\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../xfce.desktop.in.h:1
 msgid "Use this session to run Xfce as your desktop environment"
@@ -35,25 +36,25 @@ msgstr "Nie wprowadzono opisu"
 
 #: ../engines/balou/config.c:324
 msgid "Choose theme file to install..."
-msgstr "Proszę wybrać plik motywy do zainstalowania..."
+msgstr "Proszę wybrać plik stylu do zainstalowania..."
 
 #: ../engines/balou/config.c:336
 #, c-format
 msgid "Unable to install splash theme from file \"%s\""
-msgstr "Nie można zainstalować motywu ekranu powitalnego z pliku „%s”"
+msgstr "Nie można zainstalować stylu ekranu powitalnego z pliku „%s”"
 
 #: ../engines/balou/config.c:339
 msgid "Theme File Error"
-msgstr "Błąd pliku motywu"
+msgstr "Błąd pliku stylu"
 
 #: ../engines/balou/config.c:342
 msgid "Please check that the file is a valid splash theme archive."
-msgstr "Proszę sprawdzić czy plik jest poprawnym archiwum motywu."
+msgstr "Proszę sprawdzić czy plik jest poprawnym archiwum stylu."
 
 #: ../engines/balou/config.c:402
 #, c-format
 msgid "Unable to remove splash theme \"%s\" from directory %s."
-msgstr "Nie można usunąć motywu ekranu powitalnego „%s” z katalogu %s."
+msgstr "Nie można usunąć stylu ekranu powitalnego „%s” z katalogu %s."
 
 #: ../engines/balou/config.c:491
 msgid "Choose theme filename..."
@@ -61,15 +62,15 @@ msgstr "Wybór pliku"
 
 #: ../engines/balou/config.c:624
 msgid "_Install new theme"
-msgstr "Za_instaluj nowy motyw..."
+msgstr "Za_instaluj nowy styl..."
 
 #: ../engines/balou/config.c:633
 msgid "_Remove theme"
-msgstr "_Usuń motyw"
+msgstr "_Usuń styl"
 
 #: ../engines/balou/config.c:650
 msgid "_Export theme"
-msgstr "_Eksportuj motyw..."
+msgstr "_Eksportuj styl..."
 
 #: ../engines/balou/config.c:866
 msgid "Balou theme"
@@ -145,11 +146,11 @@ msgstr "Prosty ekran powitalny"
 
 #: ../scripts/xscreensaver.desktop.in.h:1
 msgid "Launch screensaver and locker program"
-msgstr ""
+msgstr "Uruchamianie wygaszacza ekranu i programu blokującego ekran"
 
 #: ../scripts/xscreensaver.desktop.in.h:2
 msgid "Screensaver"
-msgstr ""
+msgstr "Wygaszacz ekranu"
 
 #: ../settings/main.c:43
 msgid "Settings manager socket"
@@ -186,6 +187,7 @@ msgstr "Nie można połączyć z serwerem ustawień"
 #: ../settings/main.c:116
 msgid "Unable to create user interface from embedded definition data"
 msgstr ""
+"Nie można utworzyć interfejsu użytkownika przy użyciu dołączonych danych"
 
 #: ../settings/main.c:128
 msgid "_Application Autostart"
@@ -216,78 +218,78 @@ msgid "Unable to save the session"
 msgstr "Nie można zapisać sesji"
 
 #: ../settings/session-editor.c:170
-#, fuzzy
 msgid "Clear sessions"
-msgstr "Kończenie sesji"
+msgstr "Czyszczenie sesji"
 
 #: ../settings/session-editor.c:171
 msgid "Are you sure you want to empty the session cache?"
-msgstr "Wyczyścić pamięć podręczną sesji"
+msgstr "Wyczyścić pamięć podręczną sesji?"
 
 #: ../settings/session-editor.c:172
-#, fuzzy
 msgid ""
 "The saved states of your applications will not be restored during your next "
 "login."
 msgstr ""
-"Program utraci niezapisane dane i nie zostanie uruchomiony podczas następnej "
-"sesji."
+"Zapisane stany programów nie zostaną przywrócone podczas następnego "
+"logowania."
 
 #: ../settings/session-editor.c:174
 msgid "_Proceed"
-msgstr ""
+msgstr "_Kontynuuj"
 
 #: ../settings/session-editor.c:212
-msgid "You might ne

[Xfce4-commits] l10n: Updated Polish (pl) translation to 99%

2012-04-12 Thread Transifex
Updating branch refs/heads/master
 to 4e8e4fd3081aa605da38af40b748dc5661198599 (commit)
   from 862ffc109d81f01696abb0be6c9f2f043760d662 (commit)

commit 4e8e4fd3081aa605da38af40b748dc5661198599
Author: Piotr Sokół 
Date:   Thu Apr 12 09:33:29 2012 +0200

l10n: Updated Polish (pl) translation to 99%

New status: 210 messages complete with 0 fuzzies and 1 untranslated.

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

 po/pl.po |   56 +++-
 1 files changed, 31 insertions(+), 25 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index eb48aa0..d3efc17 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -2,20 +2,21 @@
 # Copyright (C) 2011 xfce4-power-manager COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-power-manager 
package.
 # Piotr Sokół , 2011, 2012.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce-power-manager 1.0.10\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-11 16:36+\n"
-"PO-Revision-Date: 2012-04-10 17:35+0200\n"
+"POT-Creation-Date: 2012-04-10 11:51+\n"
+"PO-Revision-Date: 2012-04-12 09:28+0200\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: polski <>\n"
+"Language: pl\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bits\n"
-"Language: pl\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && 
(n%100<10 || n%100>=20)) ? 1 : 2));\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../data/interfaces/xfpm-settings.ui.h:1
 msgid "Actions"
@@ -43,7 +44,7 @@ msgstr "Czynności"
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
 msgid "Consider the computer on low power at:"
-msgstr ""
+msgstr "Niski poziom naładowania akumulatora:"
 
 #. Hibernate menu option
 #: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:817
@@ -102,11 +103,11 @@ msgstr "Czas bezczynności, po którym zostanie zmniejszona 
jasność ekranu:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
 msgid "Set computer inactivity sleep mode:"
-msgstr "Tryb uśpienia pracy komputera:"
+msgstr "Tryb niskiego poboru mocy komputera:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:20
 msgid "Set monitor sleep mode:"
-msgstr "Tryb uśpienia pracy ekranu:"
+msgstr "Tryb niskiego poboru mocy ekranu:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
 msgid "Show notifications to notify about the battery state"
@@ -246,6 +247,8 @@ msgid ""
 "Disable Display Power Management Signaling (DPMS), e.g don't attempt to "
 "switch off the display or put it in sleep mode."
 msgstr ""
+"Wyłączenie obsługi standardu DPMS (np. wyłączania lub wstrzymywania "
+"działania ekranu)."
 
 #: ../settings/xfpm-settings.c:1376
 msgid "Suspend operation not supported"
@@ -266,6 +269,7 @@ msgstr "Brak uprawnień, aby zahibernować pracę komputera"
 #: ../settings/xfpm-settings.c:1440
 msgid "When all the power sources of the computer reach this charge level"
 msgstr ""
+"Kiedy wszystkie źródła zasilania osiągną następujący poziom naładowania"
 
 #: ../settings/xfpm-settings.c:1543 ../settings/xfpm-settings.c:1548
 msgid "General"
@@ -369,8 +373,7 @@ msgstr "O zasilaniu"
 #. *
 #. * Power Mode
 #. *
-#. TRANSLATOR: Mode here is the power profile (presentation, power save,
-#. normal)
+#. TRANSLATOR: Mode here is the power profile (presentation, power save, 
normal)
 #: ../src/xfpm-power.c:550
 msgid "Mode"
 msgstr "Tryb"
@@ -610,7 +613,7 @@ msgid ""
 "%s until is fully charged."
 msgstr ""
 "%s\n"
-"%s jest w ładowany (%i%%).\n"
+"%s jest ładowany (%i%%).\n"
 "Pozostały czas do całkowitego naładowania: %s"
 
 #: ../src/xfpm-battery.c:444
@@ -648,6 +651,8 @@ msgid ""
 "%s\n"
 "%s waiting to discharge (%i%%)."
 msgstr ""
+"%s\n"
+"%s: oczekiwanie na rozładowanie (%i%%)"
 
 #: ../src/xfpm-battery.c:477
 #, c-format
@@ -655,6 +660,8 @@ msgid ""
 "%s\n"
 "%s waiting to charge (%i%%)."
 msgstr ""
+"%s\n"
+"%s: oczekiwanie na naładowanie (%i%%)"
 
 #: ../src/xfpm-battery.c:481
 #, c-format
@@ -829,9 +836,8 @@ msgid "Version information"
 msgstr "Wypisuje informacje o wersji"
 
 #: ../src/xfpm-main.c:320
-#, fuzzy
 msgid "Unable to get connection to the message bus session"
-msgstr "Nie można połączyć z sesją "
+msgstr "Nie można połączyć z sesją systemu komunikacji"
 
 #: ../src/xfpm-main.c:414
 msgid "Another power manager is already running"
@@ -850,7 +856,7 @@ msgstr "Nieprawidłowe parametry"
 #: ../src/xfpm-inhibit.c:357
 #, c-format
 msgid "Invalid cookie"
-msgstr ""
+msgstr "Nieprawidłowy plik cookie"
 
 #. TRANSLATORS: the command line was not provided
 #: ../src/xfpm-power-info.c:118
@@ -870,7 +876,7 @@ msgstr "Jądro"
 #. TRANSLATORS: interrupt between processors
 #: ../src/xfpm-power-info.c:140
 msgid "Interprocessor interrupt"
-msgstr ""
+msgstr "Przerwanie międzyprocesorowe"
 
 #. TRANSLATORS: unknown interrupt
 #: ../src/xfpm-power-info.c:145
@@ -880,7 +886,7 @@ msgstr "Przerwanie"