[Xfce4-commits] Scroll to the last cell, this works more reliably

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to eb38eef045284b731912f4d1497510c3531ba3f8 (commit)
   from a102caa4a8fb4f809386f50eb46046636f7020f6 (commit)

commit eb38eef045284b731912f4d1497510c3531ba3f8
Author: Christian Dywan 
Date:   Sat Nov 6 01:35:07 2010 +0100

Scroll to the last cell, this works more reliably

 postler/postler-messages.vala |9 +++--
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index 4a9574f..e43a601 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -582,12 +582,9 @@ public class Postler.Messages : Gtk.TreeView {
 
 /* Scroll to the bottom */
 int last_child = sort.iter_n_children (null) - 1;
-if (last_child > -1) {
-Gtk.TreeIter sort_iter;
-if (sort.iter_nth_child (out sort_iter, null, last_child)) {
-set_cursor (sort.get_path (sort_iter), null, false);
-}
-}
+if (last_child > 0)
+scroll_to_cell (new Gtk.TreePath.from_indices (last_child),
+null, false, 0, 0);
 
 } catch (GLib.Error error) {
 sort = new Gtk.TreeModelSort.with_model (store);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Use Mark Important and Mark Unread for according actions

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to a102caa4a8fb4f809386f50eb46046636f7020f6 (commit)
   from 32b011cb64dcd7806eb9dac77a799f24ebd5fa42 (commit)

commit a102caa4a8fb4f809386f50eb46046636f7020f6
Author: Daniel P. Fore 
Date:   Sat Nov 6 01:14:52 2010 +0100

Use Mark Important and Mark Unread for according actions

 postler/postler-app.vala|4 
 postler/postler-bureau.vala |4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/postler/postler-app.vala b/postler/postler-app.vala
index 7ab373d..1dbf2b6 100644
--- a/postler/postler-app.vala
+++ b/postler/postler-app.vala
@@ -26,6 +26,8 @@ namespace Postler {
 const string STOCK_MAIL_FORWARDED = "mail-forwarded";
 const string STOCK_MAIL_SEND = "stock_mail-send";
 const string STOCK_MAIL_SEND_RECEIVE = "mail-send-receive";
+const string STOCK_MAIL_MARK_IMPORTANT = "mail-mark-important";
+const string STOCK_MAIL_MARK_UNREAD = "mail-mark-unread";
 const string STOCK_MAIL_MESSAGE_NEW = "mail-message-new";
 const string STOCK_MAIL_REPLIED = "mail-replied";
 const string STOCK_MAIL_REPLY_SENDER = "mail-reply-sender";
@@ -62,6 +64,8 @@ public class Postler.App : Unique.App {
 { STOCK_MAIL_ATTACHMENT, null, 0, 0, "stock_attach" },
 { STOCK_MAIL_FORWARD, N_("_Forward") },
{ STOCK_MAIL_FORWARDED, "mail-forwarded", 0, 0, STOCK_MAIL_FORWARD },
+{ STOCK_MAIL_MARK_IMPORTANT, null, 0, 0, Gtk.STOCK_NEW },
+{ STOCK_MAIL_MARK_UNREAD, null, 0, 0, STOCK_EMBLEM_IMPORTANT },
 { STOCK_MAIL_MESSAGE_NEW, N_("New _Message") },
{ STOCK_MAIL_REPLIED, "mail-replied", 0, 0, STOCK_MAIL_REPLY_SENDER },
 { STOCK_MAIL_REPLY_SENDER, N_("Reply To _Sender") },
diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index 8e0446f..2658c6a 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -335,9 +335,9 @@ public class Postler.Bureau : Gtk.Window {
   N_("Reply to all recipients"), action_message_reply_all },
 { "MessageForward", STOCK_MAIL_FORWARD, null, "f",
   N_("Forward message"), action_message_forward },
-{ "MessageUnread", Gtk.STOCK_NEW, null, "u",
+{ "MessageUnread", STOCK_MAIL_MARK_UNREAD, null, "u",
   N_("Mark message as unread"), action_message_unread },
-{ "MessageFlag", STOCK_EMBLEM_IMPORTANT, null, "t",
+{ "MessageFlag", STOCK_MAIL_MARK_IMPORTANT, null, "t",
   N_("Flag message"), action_flag },
 { "MessageArchive", STOCK_ARCHIVE, null, "e",
   N_("Archive message"), action_archive },
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Rebuild proper filenames when toggling flags

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to 32b011cb64dcd7806eb9dac77a799f24ebd5fa42 (commit)
   from 50755b7f775a54c351953966c3fcff9fdc2dbac2 (commit)

commit 32b011cb64dcd7806eb9dac77a799f24ebd5fa42
Author: Christian Dywan 
Date:   Sat Nov 6 00:54:52 2010 +0100

Rebuild proper filenames when toggling flags

flags_from_filename() returns the filename without flags now.

 postler/postler-messages.vala |   28 +++-
 1 files changed, 15 insertions(+), 13 deletions(-)

diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index 9169285..4a9574f 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -359,20 +359,21 @@ public class Postler.Messages : Gtk.TreeView {
 return GLib.Time.local (timestamp).format ("%x %X");
 }
 
-static string flags_from_filename (string filename) {
-unowned string? flagstart = null;
-unowned string? versionstart = filename.chr (-1, ':');
-if (versionstart != null)
-flagstart = versionstart.chr (-1, ',');
-if (flagstart != null)
-return flagstart.substring (1);
-return "";
+static string flags_from_filename (string filename, out string 
bare_filename) {
+string[]? parts = filename.split (":");
+if (parts == null || parts[0] == null || parts[1] == null) {
+bare_filename = filename;
+return "";
+}
+bare_filename = parts[0];
+return parts[1];
 }
 
 static string parse_flags (string name, out string flagged, out int 
weight) {
 /* format "unique:2,DFPRST", ordered alphabetically */
 unowned string status = STOCK_MAIL_UNREAD;
-string flags = flags_from_filename (name);
+string bare_filename;
+string flags = flags_from_filename (name, out bare_filename);
 if (flags == "")
 return status;
 
@@ -601,10 +602,10 @@ public class Postler.Messages : Gtk.TreeView {
 
 internal static string toggle_flag (string location, char flag) {
 string folder = Path.get_dirname (location);
-string filename = Path.get_basename (location);
+string bare_filename;
 if (folder.has_suffix ("/new"))
 folder = folder.slice (0, -4) + "/cur";
-string flags = flags_from_filename (location);
+string flags = flags_from_filename (location, out bare_filename);
 var new_flags = new StringBuilder ();
 bool did_include_flag = false;
 foreach (var character in flags.to_utf8 ()) {
@@ -622,7 +623,7 @@ public class Postler.Messages : Gtk.TreeView {
 }
 if (!did_include_flag)
 new_flags.append_c (flag);
-return folder + "/" + filename + new_flags.str;
+return folder + "/" + Path.get_basename (bare_filename) + ":" + 
new_flags.str;
 }
 
 void toggle_message_flag (Gtk.TreeIter sort_iter, ref string location, 
char flag) {
@@ -644,7 +645,8 @@ public class Postler.Messages : Gtk.TreeView {
 }
 
 void mark_message_read (Gtk.TreeIter sort_iter, ref string location) {
-if (!flags_from_filename (location).contains ("S"))
+string bare_filename;
+if (!flags_from_filename (location, out bare_filename).contains ("S"))
 toggle_message_flag (sort_iter, ref location, 'S');
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Use status icons for Forwarded, Replied, Unread

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to 50755b7f775a54c351953966c3fcff9fdc2dbac2 (commit)
   from 08b57081914d8903e89e888e415fe27743021ec8 (commit)

commit 50755b7f775a54c351953966c3fcff9fdc2dbac2
Author: Daniel P. Fore 
Date:   Sat Nov 6 00:13:57 2010 +0100

Use status icons for Forwarded, Replied, Unread

 postler/postler-app.vala  |6 ++
 postler/postler-messages.vala |   10 +-
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/postler/postler-app.vala b/postler/postler-app.vala
index 1576aff..7ab373d 100644
--- a/postler/postler-app.vala
+++ b/postler/postler-app.vala
@@ -23,11 +23,14 @@ namespace Postler {
 const string STOCK_INTERNET_MAIL = "internet-mail";
 const string STOCK_MAIL_ATTACHMENT = "mail-attachment";
 const string STOCK_MAIL_FORWARD = "mail-forward";
+const string STOCK_MAIL_FORWARDED = "mail-forwarded";
 const string STOCK_MAIL_SEND = "stock_mail-send";
 const string STOCK_MAIL_SEND_RECEIVE = "mail-send-receive";
 const string STOCK_MAIL_MESSAGE_NEW = "mail-message-new";
+const string STOCK_MAIL_REPLIED = "mail-replied";
 const string STOCK_MAIL_REPLY_SENDER = "mail-reply-sender";
 const string STOCK_MAIL_REPLY_ALL = "mail-reply-all";
+const string STOCK_MAIL_UNREAD = "mail-unread";
 const string STOCK_INBOX = "mail-inbox";
 const string STOCK_OUTBOX = "mail-outbox";
 const string STOCK_SENT_MAIL = "mail-sent";
@@ -58,11 +61,14 @@ public class Postler.App : Unique.App {
 { STOCK_FOLDER_SAVED_SEARCH },
 { STOCK_MAIL_ATTACHMENT, null, 0, 0, "stock_attach" },
 { STOCK_MAIL_FORWARD, N_("_Forward") },
+   { STOCK_MAIL_FORWARDED, "mail-forwarded", 0, 0, STOCK_MAIL_FORWARD },
 { STOCK_MAIL_MESSAGE_NEW, N_("New _Message") },
+   { STOCK_MAIL_REPLIED, "mail-replied", 0, 0, STOCK_MAIL_REPLY_SENDER },
 { STOCK_MAIL_REPLY_SENDER, N_("Reply To _Sender") },
 { STOCK_MAIL_REPLY_ALL, N_("Reply to _All") },
 { STOCK_MAIL_SEND, N_("_Send Message"), 0, 0, STOCK_MAIL_SEND_RECEIVE 
},
 { STOCK_MAIL_SEND_RECEIVE, N_("_Receive Mail") },
+   { STOCK_MAIL_UNREAD, "mail-unread", 0, 0, Gtk.STOCK_NEW },
 { STOCK_IMAGE, null, 0, 0, "gnome-mime-image" },
 { STOCK_INBOX, null, 0, 0, "stock_inbox" },
 { STOCK_OUTBOX, null, 0, 0, "stock_outbox" },
diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index 381829c..9169285 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -371,7 +371,7 @@ public class Postler.Messages : Gtk.TreeView {
 
 static string parse_flags (string name, out string flagged, out int 
weight) {
 /* format "unique:2,DFPRST", ordered alphabetically */
-unowned string status = Gtk.STOCK_NEW;
+unowned string status = STOCK_MAIL_UNREAD;
 string flags = flags_from_filename (name);
 if (flags == "")
 return status;
@@ -385,14 +385,14 @@ public class Postler.Messages : Gtk.TreeView {
 flagged = STOCK_EMBLEM_IMPORTANT;
 break;
 case 'P':
-status = STOCK_MAIL_FORWARD;
+status = STOCK_MAIL_FORWARDED;
 break;
 case 'R':
-status = STOCK_MAIL_REPLY_SENDER;
+status = STOCK_MAIL_REPLIED;
 break;
 case 'S':
 weight = Pango.Weight.NORMAL;
-if (status == Gtk.STOCK_NEW)
+if (status == STOCK_MAIL_UNREAD)
 status = null;
 break;
 case 'T':
@@ -466,7 +466,7 @@ public class Postler.Messages : Gtk.TreeView {
 if (name[0] == '.')
 continue;
 
-string status = Gtk.STOCK_NEW;
+string status = STOCK_MAIL_UNREAD;
 int font_weight = Pango.Weight.BOLD;
 string flagged = null;
 if (!folder_new) {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Use for() instead of foreach() to iterate emoticons

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to 08b57081914d8903e89e888e415fe27743021ec8 (commit)
   from f38adcdf6331919591f37baed4b15f7158eccff3 (commit)

commit 08b57081914d8903e89e888e415fe27743021ec8
Author: Christian Dywan 
Date:   Fri Nov 5 23:54:25 2010 +0100

Use for() instead of foreach() to iterate emoticons

 postler/postler-content.vala |9 +
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/postler/postler-content.vala b/postler/postler-content.vala
index abc562b..d8a6940 100644
--- a/postler/postler-content.vala
+++ b/postler/postler-content.vala
@@ -230,8 +230,7 @@ public class Postler.Content : WebKit.WebView {
 
 static bool evaluate_emoticon (GLib.MatchInfo match_info,
GLib.StringBuilder result,
-   void*  user_data) {
-EmoticonMapping emoticon = *(EmoticonMapping*)user_data;
+   EmoticonMappingemoticon) {
 Gdk.Pixbuf pixbuf = null;
 try {
 pixbuf = Gtk.IconTheme.get_for_screen (
@@ -739,12 +738,14 @@ public class Postler.Content : WebKit.WebView {
 }
 
 /* Emoticons */
-foreach (var emoticon in emoticons) {
+/* foreach (var emoticon in emoticons) { */
+for (int i = 0; i < emoticons.length; i++) {
+var emoticon = emoticons[i];
 try {
 var escaped = GLib.Regex.escape_string (" " + 
emoticon.token);
 var regex = new GLib.Regex (escaped);
 body_chunk = regex.replace_eval (body_chunk, -1, 0, 0,
-(match_info, result) => { evaluate_emoticon 
(match_info, result, &emoticon); });
+(match_info, result) => { evaluate_emoticon 
(match_info, result, emoticon); });
 }
 catch (GLib.RegexError error) { }
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Handle multi-line -moz-document blocks

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to 96a276219aa1bb8209fb256ccebdc4b41e14d2d7 (commit)
   from 156374ded77f8d4debf1670efb91dd30401263a9 (commit)

commit 96a276219aa1bb8209fb256ccebdc4b41e14d2d7
Author: Paweł Forysiuk 
Date:   Fri Nov 5 23:26:34 2010 +0100

Handle multi-line -moz-document blocks

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

diff --git a/extensions/addons.c b/extensions/addons.c
index 229051f..3ec1048 100644
--- a/extensions/addons.c
+++ b/extensions/addons.c
@@ -794,6 +794,7 @@ css_metadata_from_file (const gchar* filename,
 GIOChannel* channel;
 gchar* line;
 gchar* rest_of_line;
+gboolean line_has_meta;
 
 if (!g_file_test (filename, G_FILE_TEST_IS_REGULAR | 
G_FILE_TEST_IS_SYMLINK))
 return FALSE;
@@ -802,21 +803,26 @@ css_metadata_from_file (const gchar* filename,
 if (!channel)
 return FALSE;
 
+line_has_meta = FALSE;
 while (g_io_channel_read_line (channel, &line, NULL, NULL, NULL)
== G_IO_STATUS_NORMAL)
 {
-if (g_str_has_prefix (line, "@-moz-document"))
+if (g_str_has_prefix (line, "@-moz-document") || line_has_meta)
 { /* FIXME: We merely look for includes. We should honor blocks. */
  if (includes)
  {
  gchar** parts;
  guint i;
 
- rest_of_line = g_strdup (line + strlen ("@-moz-document"));
+ if (g_str_has_prefix (line, "@-moz-document"))
+ rest_of_line = g_strdup (line + strlen 
("@-moz-document"));
+ else
+ rest_of_line = g_strdup (line);
+
  rest_of_line = g_strstrip (rest_of_line);
  parts = g_strsplit (rest_of_line, " ", 0);
  i = 0;
- while (parts[i])
+ while (parts[i] && (*parts[i] != '\0' && *parts[i] != '{'))
  {
  gchar* value = NULL;
  if (g_str_has_prefix (parts[i], "url-prefix("))
@@ -830,6 +836,7 @@ css_metadata_from_file (const gchar* filename,
  guint begin, end;
  gchar* domain;
 
+ line_has_meta = TRUE;
  begin = value[0] == '"' || value[0] == '\'' ? 1 : 0;
  end = 1;
  while (value[end] != '\0' && value[end] != ')')
@@ -850,6 +857,7 @@ css_metadata_from_file (const gchar* filename,
  }
  g_strfreev (parts);
  }
+ line_has_meta  = g_str_has_suffix (rest_of_line, "{") ? FALSE : 
TRUE;
 }
 g_free (line);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Update NEWS file.

2010-11-05 Thread Jérôme Guelfucci
Updating branch refs/heads/master
 to ebc8c49964a6ebfd9b5193f5b3bc4cacdfc746b0 (commit)
   from d2bad7d9397b40bf1d6437c4e069b67a0d5c1fc3 (commit)

commit ebc8c49964a6ebfd9b5193f5b3bc4cacdfc746b0
Author: Jérôme Guelfucci 
Date:   Fri Nov 5 21:11:38 2010 +0100

Update NEWS file.

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

diff --git a/NEWS b/NEWS
index 4f68c37..bdc8b63 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+4.7.4
+=
+- Add X11/keysym.h include to keyboards.c (Bug #6778).
+- Fix compilation without Randr 1.3 (Bug #6779).
+
 4.7.3
 =
 - Add startup notification support for keyboard shortcuts.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fix compilation without Randr 1.3 (bug #6779).

2010-11-05 Thread Jérôme Guelfucci
Updating branch refs/heads/master
 to d2bad7d9397b40bf1d6437c4e069b67a0d5c1fc3 (commit)
   from 9cc15aebb5135f36877581d75414e1fbbaa5a988 (commit)

commit d2bad7d9397b40bf1d6437c4e069b67a0d5c1fc3
Author: Jérôme Guelfucci 
Date:   Fri Nov 5 21:07:59 2010 +0100

Fix compilation without Randr 1.3 (bug #6779).

 xfce4-settings-helper/displays.c |2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/xfce4-settings-helper/displays.c b/xfce4-settings-helper/displays.c
index 6036c9b..22f75ff 100644
--- a/xfce4-settings-helper/displays.c
+++ b/xfce4-settings-helper/displays.c
@@ -136,7 +136,9 @@ xfce_displays_helper_init (XfceDisplaysHelper *helper)
 g_signal_connect (G_OBJECT (helper->channel), "property-changed",
   G_CALLBACK 
(xfce_displays_helper_channel_property_changed), helper);
 
+#ifdef HAS_RANDR_ONE_POINT_THREE
 helper->has_1_3 = (major > 1 || (major == 1 && minor >= 3));
+#endif
 /* restore the default scheme */
 xfce_displays_helper_channel_apply (helper, "Default");
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Add X11/keysym.h include to keyboards.c.

2010-11-05 Thread Jérôme Guelfucci
Updating branch refs/heads/master
 to 9cc15aebb5135f36877581d75414e1fbbaa5a988 (commit)
   from f6831efbee8f61d8ab6715cacacf6101f774c2c7 (commit)

commit 9cc15aebb5135f36877581d75414e1fbbaa5a988
Author: Peter Tribble 
Date:   Fri Nov 5 21:01:01 2010 +0100

Add X11/keysym.h include to keyboards.c.

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

diff --git a/xfce4-settings-helper/keyboards.c 
b/xfce4-settings-helper/keyboards.c
index 0880c88..9c6c291 100644
--- a/xfce4-settings-helper/keyboards.c
+++ b/xfce4-settings-helper/keyboards.c
@@ -33,6 +33,7 @@
 
 #include 
 #include 
+#include 
 
 #include 
 #include 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to d4b9118ee350527f30630c6e9ad9cf93fdfccc66 (commit)
   from e708c5bdca2bea36f917c24b5e8e47862798a6b3 (commit)

commit d4b9118ee350527f30630c6e9ad9cf93fdfccc66
Author: Per Kongstad 
Date:   Fri Nov 5 19:35:12 2010 +0100

l10n: Updated Danish (da) translation to 100%

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

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

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

diff --git a/po/da.po b/po/da.po
index 912d5bc..fe61ae5 100644
--- a/po/da.po
+++ b/po/da.po
@@ -300,7 +300,6 @@ msgstr "Lodret aftagende"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:32
 #: ../settings/xfdesktop-settings-ui.glade.h:40
-#, fuzzy
 msgid "Zoomed"
 msgstr "Zoomed"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Danish (da) translation to 99%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to e708c5bdca2bea36f917c24b5e8e47862798a6b3 (commit)
   from b2a3f253621666430385a9e0044107b0fa1448df (commit)

commit e708c5bdca2bea36f917c24b5e8e47862798a6b3
Author: Per Kongstad 
Date:   Fri Nov 5 19:34:05 2010 +0100

l10n: Updated Danish (da) translation to 99%

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

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

 po/da.po |  253 ++
 1 files changed, 90 insertions(+), 163 deletions(-)

diff --git a/po/da.po b/po/da.po
index 1295d62..912d5bc 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,17 +7,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 20:14+0100\n"
+"POT-Creation-Date: 2010-11-05 17:09+\n"
 "PO-Revision-Date: 2009-12-18 18:46+0100\n"
 "Last-Translator: Per Kongstad \n"
 "Language-Team: Danish \n"
-"Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Country: DENMARK\n"
+"Language: da\n"
 "X-Poedit-Language: Danish\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: DENMARK\n"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
@@ -66,11 +66,8 @@ msgstr "Opret/indlæs baggrundsliste"
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
-msgstr ""
-"Fil \"%s\" er ikke en gyldig baggrundsfilliste.  Ønsker du at overskrive "
-"denne?"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
+msgstr "Fil \"%s\" er ikke en gyldig baggrundsfilliste.  Ønsker du at 
overskrive denne?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
@@ -191,7 +188,7 @@ msgstr "Tilføj et billede til listen"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr ""
+msgstr "Automatisk"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a random image from a list file"
@@ -204,7 +201,7 @@ msgstr "_Lysstyrke:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
 msgid "Centered"
-msgstr ""
+msgstr "Centreret"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
 msgid "Create a new list, or load an existing one"
@@ -217,7 +214,7 @@ msgstr "Vis ikke billeder overhovedet"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 #: ../settings/xfdesktop-settings-ui.glade.h:12
 msgid "Horizontal gradient"
-msgstr ""
+msgstr "Horisontalt aftagende"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
 msgid "Image _list"
@@ -242,7 +239,7 @@ msgstr "Mæt_ning:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 #: ../settings/xfdesktop-settings-ui.glade.h:23
 msgid "Scaled"
-msgstr ""
+msgstr "Skaleret"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
@@ -259,18 +256,15 @@ msgstr "Vælg et enkelt billede som baggrund"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 #: ../settings/xfdesktop-settings-ui.glade.h:32
 msgid "Solid color"
-msgstr ""
+msgstr "Ensfarvet"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
 msgstr "Angiver den \"højre\" eller \"'bund\" af farveaftagningen"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
-msgstr ""
-"Angiver den ensartede farve, eller \"venstre\" eller \"'top\" af "
-"farveaftagningen"
+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient"
+msgstr "Angiver den ensartede farve, eller \"venstre\" eller \"'top\" af 
farveaftagningen"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
 msgid "Specify how the image will be resized to fit the screen"
@@ -287,27 +281,28 @@ msgstr "S_til:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:28
 #: ../settings/xfdesktop-settings-ui.glade.h:34
 msgid "Stretched"
-msgstr ""
+msgstr "Strukket"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:29
 #: ../settings/xfdesktop-settings-ui.glade.h:35
 msgid "Tiled"
-msgstr ""
+msgstr "Flise"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:30
 #: ../settings/xfdesktop-settings-ui.glade.h:36
 msgid "Transparent"
-msgstr ""
+msgstr "Gennemsigtigt"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:31
 #: ../settings/xfdesktop-settings-ui.glade.h:39
 msgid "Vertical gradient"
-msgstr ""
+msgstr "Lodret aftagende"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:32
 #: ../settings/xfdesktop-settings-ui.glade.h:

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to c580c20031988d10736dcb1ac53fff9a46649699 (commit)
   from 9d971c7c559eb742f3edbbb53da30df535b5613e (commit)

commit c580c20031988d10736dcb1ac53fff9a46649699
Author: Per Kongstad 
Date:   Fri Nov 5 19:34:48 2010 +0100

l10n: Updated Danish (da) translation to 100%

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

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

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

diff --git a/po/da.po b/po/da.po
index b65e68d..e9adf24 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1173,7 +1173,6 @@ msgid "GNOME Terminal"
 msgstr "GNOME Terminal"
 
 #: ../exo-helper/helpers/icedove.desktop.in.in.h:1
-#, fuzzy
 msgid "Icedove"
 msgstr "Icedove"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 80ce5f3898b5b8a0226d7ce47687bb2f1fac59b1 (commit)
   from 3d9f369db523259a228f17a3072f7df0bd0aa5ab (commit)

commit 80ce5f3898b5b8a0226d7ce47687bb2f1fac59b1
Author: Per Kongstad 
Date:   Fri Nov 5 19:29:56 2010 +0100

l10n: Updated Danish (da) translation to 100%

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

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

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

diff --git a/po/da.po b/po/da.po
index 9682870..2aa44cd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-24 19:26+\n"
+"POT-Creation-Date: 2010-11-05 17:08+\n"
 "PO-Revision-Date: 2010-06-14 11:44+0100\n"
 "Last-Translator: Per Kongstad \n"
 "Language-Team: Danish \n"
@@ -676,8 +676,8 @@ msgid "Select this option to show the generic application 
name in the menu, for
 msgstr "Vælg denne indstilling for at vise det generiske navn i menuen, 
eksempelvis \"Filhåndtering\" i stedet for \"Thunar\""
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:8
-msgid "Show application description in t_ooltip"
-msgstr "Vis programbeskrivelse i værktøjs_tips"
+msgid "Show application d_escription in tooltip"
+msgstr "Vis program_beskrivelse i værktøjstips"
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:9
 msgid "Show generic application n_ames"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Danish (da) translation to 99%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 9d971c7c559eb742f3edbbb53da30df535b5613e (commit)
   from b1c5b7a3aaa7eda5cca1e5cfba692be9a62dc573 (commit)

commit 9d971c7c559eb742f3edbbb53da30df535b5613e
Author: Per Kongstad 
Date:   Fri Nov 5 19:28:57 2010 +0100

l10n: Updated Danish (da) translation to 99%

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

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

 po/da.po |  189 --
 1 files changed, 72 insertions(+), 117 deletions(-)

diff --git a/po/da.po b/po/da.po
index 6e0709e..b65e68d 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2,19 +2,19 @@
 # Copyright (c) 2004-2007 os-cillation.
 # This file is distributed under the same license as the libexo package.
 # Per Kongstad , 2008, 09.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Exo 0.5.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-07-21 18:14+0200\n"
+"POT-Creation-Date: 2010-11-05 17:00+\n"
 "PO-Revision-Date: 2010-02-20 00:22+0100\n"
 "Last-Translator: Per Kongstad \n"
 "Language-Team: Danish \n"
-"Language: da\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: da\n"
 "X-Poedit-Language: Danish\n"
 "X-Poedit-SourceCharset: utf-8\n"
 "X-Poedit-Country: DENMARK\n"
@@ -65,11 +65,8 @@ msgstr "Kunne ikke læse fil \"%s\": %s"
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
-msgid ""
-"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
-msgstr ""
-"Kunne ikke indlæse billede \"%s\": Ukendt fejl, højst sandsynligt en ødelagt "
-"billedfil"
+msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image 
file"
+msgstr "Kunne ikke indlæse billede \"%s\": Ukendt fejl, højst sandsynligt en 
ødelagt billedfil"
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
@@ -278,9 +275,7 @@ msgstr "Opmærkningskolonne"
 
 #: ../exo/exo-icon-view.c:748
 msgid "Model column used to retrieve the text if using Pango markup"
-msgstr ""
-"Modelkolonne som bliver brugt til at hente teksten, hvis der bliver brugt "
-"Pango-opmærkning"
+msgstr "Modelkolonne som bliver brugt til at hente teksten, hvis der bliver 
brugt Pango-opmærkning"
 
 #: ../exo/exo-icon-view.c:762
 msgid "Icon View Model"
@@ -291,10 +286,8 @@ msgid "The model for the icon view"
 msgstr "Modellen der bruges til ikonvisning"
 
 #: ../exo/exo-icon-view.c:777
-msgid ""
-"How the text and icon of each item are positioned relative to each other"
-msgstr ""
-"Hvordan hvert elements tekst og ikoner er placeret i forhold til hinanden"
+msgid "How the text and icon of each item are positioned relative to each 
other"
+msgstr "Hvordan hvert elements tekst og ikoner er placeret i forhold til 
hinanden"
 
 #: ../exo/exo-icon-view.c:809
 msgid "Reorderable"
@@ -341,12 +334,8 @@ msgid "Single Click Timeout"
 msgstr "Tidsgrænse for enkeltklik"
 
 #: ../exo/exo-icon-view.c:889 ../exo/exo-tree-view.c:172
-msgid ""
-"The amount of time after which the item under the mouse cursor will be "
-"selected automatically in single click mode"
-msgstr ""
-"Hvor lang tid der skal gå, inden elementet under musemarkøren bliver valgt "
-"automatisk i enkeltklikstilstand"
+msgid "The amount of time after which the item under the mouse cursor will be 
selected automatically in single click mode"
+msgstr "Hvor lang tid der skal gå, inden elementet under musemarkøren bliver 
valgt automatisk i enkeltklikstilstand"
 
 #: ../exo/exo-icon-view.c:904
 msgid "Spacing"
@@ -405,12 +394,8 @@ msgid "_Add a new toolbar"
 msgstr "_Tilføj ny værktøjsbjælke"
 
 #: ../exo/exo-toolbars-editor.c:221
-msgid ""
-"Drag an item onto the toolbars above to add it, from the toolbars in the "
-"items table to remove it."
-msgstr ""
-"Træk et element til værktøjsbjælken ovenfor for at tilføje det, fra "
-"værktøjsbjælkerne i elementtabellen for at fjerne det."
+msgid "Drag an item onto the toolbars above to add it, from the toolbars in 
the items table to remove it."
+msgstr "Træk et element til værktøjsbjælken ovenfor for at tilføje det, fra 
værktøjsbjælkerne i elementtabellen for at fjerne det."
 
 #: ../exo/exo-toolbars-editor.c:538
 msgid "Separator"
@@ -616,37 +601,44 @@ msgstr "Skalskripter"
 msgid "Create Launcher %s"
 msgstr "Opret programstarter %s"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:297
 msgid "_Name:"
 msgstr "_Navn:"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:313
 msgid "C_omment:"
 msgstr "K_ommentar:"
 
-#. TRANSLATORS: Label in "Create Launc

[Xfce4-commits] Merge consecutive file change events using an idle handler.

2010-11-05 Thread Jannis Pohlmann
Updating branch refs/heads/master
 to e9cf76d8adcbc9eceab9a3c00a8213bbb54b6891 (commit)
   from 53a350d9380b89e062c7f122c16a493e972341ce (commit)

commit e9cf76d8adcbc9eceab9a3c00a8213bbb54b6891
Author: Jannis Pohlmann 
Date:   Fri Nov 5 19:01:31 2010 +0100

Merge consecutive file change events using an idle handler.

In combination with handling G_FILE_MONITOR_EVENT_CREATED, this properly
picks up all changes to application directories now. An idle handler is
used together with a GFile list to avoid processing the same file
multiple times, e.g. when receiving three consecutive CREATED,
CHANGES_DONE and ATTRIBUTE_CHANGED events.

 garcon/garcon-menu.c |   99 +-
 1 files changed, 90 insertions(+), 9 deletions(-)

diff --git a/garcon/garcon-menu.c b/garcon/garcon-menu.c
index b4c3b2e..8a4cd30 100644
--- a/garcon/garcon-menu.c
+++ b/garcon/garcon-menu.c
@@ -221,6 +221,10 @@ struct _GarconMenuPrivate
   /* Shared menu item cache */
   GarconMenuItemCache *cache;
 
+  /* List to merge consecutive file changes into a a single event */
+  GList   *changed_files;
+  guintfile_changed_idle;
+
   /* Flag for marking custom path menus */
   guintuses_custom_path : 1;
 };
@@ -336,6 +340,7 @@ garcon_menu_init (GarconMenu *menu)
   menu->priv->parent = NULL;
   menu->priv->pool = garcon_menu_item_pool_new ();
   menu->priv->uses_custom_path = TRUE;
+  menu->priv->changed_files = NULL;
 
   /* Take reference on the menu item cache */
   menu->priv->cache = garcon_menu_item_cache_get_default ();
@@ -1760,6 +1765,12 @@ garcon_menu_start_monitoring (GarconMenu *menu)
   /* Let only the root menu monitor menu files, merge files/directories and 
app dirs */
   if (menu->priv->parent == NULL)
 {
+  /* Create the list for merging consecutive file change events */
+  menu->priv->changed_files = NULL;
+
+  /* Reset the idle source for handling file changes */
+  menu->priv->file_changed_idle = 0;
+
   garcon_menu_monitor_menu_files (menu);
 
   garcon_menu_monitor_files (menu, menu->priv->merge_files, 
@@ -1803,6 +1814,15 @@ garcon_menu_stop_monitoring (GarconMenu *menu)
   /* Free the monitor list */
   g_list_free (menu->priv->monitors);
   menu->priv->monitors = NULL;
+
+  /* Stop the idle source for handling file changes from being invoked */
+  if (menu->priv->file_changed_idle != 0)
+g_source_remove (menu->priv->file_changed_idle);
+
+  /* Free the hash table for merging consecutive file change events */
+  g_list_foreach (menu->priv->changed_files, (GFunc) g_object_unref, NULL);
+  g_list_free (menu->priv->changed_files);
+  menu->priv->changed_files = NULL;
 }
 
 
@@ -2100,23 +2120,24 @@ garcon_menu_merge_dir_changed (GarconMenu   *menu,
 
 
 
-static void
-garcon_menu_app_dir_changed (GarconMenu   *menu,
- GFile*file,
- GFile*other_file,
- GFileMonitorEvent event_type,
- GFileMonitor *monitor)
+static gboolean
+garcon_menu_process_file_changes (GarconMenu *menu)
 {
   GarconMenuItem *item;
   GFileType   file_type;
   gbooleanaffects_the_outside = FALSE;
+  gbooleanstop_processing = FALSE;
+  GFile  *file;
+  GList  *lp;
   gchar  *path;
 
-  g_return_if_fail (GARCON_IS_MENU (menu));
-  g_return_if_fail (menu->priv->parent == NULL);
+  g_return_val_if_fail (GARCON_IS_MENU (menu), FALSE);
+  g_return_val_if_fail (menu->priv->parent == NULL, FALSE);
 
-  if (event_type == G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT)
+  for (lp = menu->priv->changed_files; !stop_processing && lp != NULL; lp = 
lp->next)
 {
+  file = G_FILE (lp->data);
+
   /* query the type of the changed file */
   file_type = g_file_query_file_type (file, G_FILE_QUERY_INFO_NONE, NULL);
 
@@ -2129,6 +2150,7 @@ garcon_menu_app_dir_changed (GarconMenu   *menu,
* this is not trivial to handle, so we simply enforce a
* menu reload to deal with the changes */
   g_signal_emit (menu, menu_signals[RELOAD_REQUIRED], 0);
+  stop_processing = TRUE;
 }
   else
 {
@@ -2149,6 +2171,7 @@ garcon_menu_app_dir_changed (GarconMenu   *menu,
* more complicated than one would first think, so 
just
* enforce a complete menu reload for now */
   g_signal_emit (menu, menu_signals[RELOAD_REQUIRED], 
0);
+  stop_processing = TRUE;
 }
   else
 {
@@ -2172,6 +2195,7 @@ garcon_menu_app_dir_changed (GarconMenu   *menu,
* tricky, so, again, we just enfore a menu reload until 
we have 
* something better */
   g_signal_emi

[Xfce4-commits] Use the domain as 'maildomain' in msmtp

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to f38adcdf6331919591f37baed4b15f7158eccff3 (commit)
   from 1f5913e416b5f973a9a445f9bb3dfed1320050c4 (commit)

commit f38adcdf6331919591f37baed4b15f7158eccff3
Author: Allen Lowe 
Date:   Fri Nov 5 18:16:48 2010 +0100

Use the domain as 'maildomain' in msmtp

 postler/postler-accounts.vala |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/postler/postler-accounts.vala b/postler/postler-accounts.vala
index 56835ee..fc6842a 100644
--- a/postler/postler-accounts.vala
+++ b/postler/postler-accounts.vala
@@ -239,7 +239,7 @@ public class Postler.Accounts : GLib.Object {
 tls_trust_file %s
 tls_trust_file %s
 auto_from on
-maildomain localhost
+maildomain %s
 account postler
 host %s
 from %s
@@ -250,6 +250,7 @@ public class Postler.Accounts : GLib.Object {
 printf (
 certificate_file,
 certificate != null ? certificate : certificate_file,
+info.address.split (",")[0].split ("@")[1],
 info.send,
 info.address.split (",")[0],
 info.username,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Enable rule hints on the message list

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to 1f5913e416b5f973a9a445f9bb3dfed1320050c4 (commit)
   from 3a4629c7d655983d7c83f44cf81fff78e80395f6 (commit)

commit 1f5913e416b5f973a9a445f9bb3dfed1320050c4
Author: Allen Lowe 
Date:   Fri Nov 5 18:14:07 2010 +0100

Enable rule hints on the message list

 postler/postler-bureau.vala |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index 751180a..8e0446f 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -516,6 +516,7 @@ public class Postler.Bureau : Gtk.Window {
 
 folders.set_headers_visible (false);
 messages.set_headers_visible (false);
+messages.set_rules_hint (true);
 vpaned.set_position ((int)(monitor.height / 1.7 / 3));
 hpaned.set_position ((int)(window_width / 4));
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Use Properties stock icon for View menu button

2010-11-05 Thread Christian Dywan
Updating branch refs/heads/master
 to 3a4629c7d655983d7c83f44cf81fff78e80395f6 (commit)
   from 560cab7bc7ea8639323c8891836e22bfabfd17d4 (commit)

commit 3a4629c7d655983d7c83f44cf81fff78e80395f6
Author: Allen Lowe 
Date:   Fri Nov 5 18:06:23 2010 +0100

Use Properties stock icon for View menu button

 postler/postler-bureau.vala |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index 123def1..751180a 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -350,7 +350,7 @@ public class Postler.Bureau : Gtk.Window {
   N_("Search the selected folder"), action_search },
 { "SaveSearch", null, N_("Save Search"), "s",
   N_("Save the current search"), action_save_search },
-{ "View", Gtk.STOCK_INDEX, N_("_View"), "",
+{ "View", Gtk.STOCK_PROPERTIES, N_("_View"), "",
   null, action_view },
 { "Fullscreen", Gtk.STOCK_FULLSCREEN, null, "F11",
   N_("View the message in fullscreen"), action_fullscreen },
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Improve performances in xfrun_history_save.

2010-11-05 Thread Jérôme Guelfucci
Updating branch refs/heads/completion
 to 0ee3ddb1e3f5af76b7e7bddea818431dd2fb28dc (commit)
   from 28fe32f9f524f135f2efb7ce7e86945f33f6bfec (commit)

commit 0ee3ddb1e3f5af76b7e7bddea818431dd2fb28dc
Author: Jérôme Guelfucci 
Date:   Fri Nov 5 18:24:57 2010 +0100

Improve performances in xfrun_history_save.

Use a GString instead of g_strconcat.

 xfrun/xfrun-history.c |   27 ---
 1 files changed, 12 insertions(+), 15 deletions(-)

diff --git a/xfrun/xfrun-history.c b/xfrun/xfrun-history.c
index f438b10..27031ce 100644
--- a/xfrun/xfrun-history.c
+++ b/xfrun/xfrun-history.c
@@ -180,36 +180,33 @@ static GList
 static void
 xfrun_history_save (GList *list)
 {
-  GError *error;
-  gchar  *history_file;
-  gchar  *contents;
-  GList  *l;
+  GError  *error;
+  GString *string;
+  gchar   *history_file;
+  gchar   *contents;
+  GList   *l;
 
   if (list == NULL)
 return;
 
   error = NULL;
-  contents = g_strdup ("");
+  string = g_string_sized_new (512);
   history_file =
 xfce_resource_lookup (XFCE_RESOURCE_CACHE, "xfce4/xfrun4/history");
 
   for (l = list; l != NULL; l = g_list_next (l))
 {
   XfrunHistoryItem *item;
-  gchar*tmp;
 
   item = (XfrunHistoryItem *) l->data;
 
-  tmp = g_strconcat (contents,
- item->in_terminal ? "1" : "0",
- ":",
- item->command,
- "\n", NULL);
-
-  g_free (contents);
-  contents = tmp;
+  g_string_append (string, item->in_terminal ? "1:" : "0:");
+  g_string_append (string, item->command);
+  g_string_append (string, "\n");
 }
 
+  contents = string->str;
+
   if (!g_file_set_contents (history_file, contents, strlen (contents), &error))
 {
   xfce_dialog_show_error (NULL, error,
@@ -218,7 +215,7 @@ xfrun_history_save (GList *list)
   g_error_free (error);
 }
 
-  g_free (contents);
+  g_string_free (string, TRUE);
   g_free (history_file);
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Add desktop file based completion.

2010-11-05 Thread Jérôme Guelfucci
Updating branch refs/heads/completion
 to 912df5b2c31068bfe6679cd6471aed148e69707c (commit)
   from b19bc6f0113e1b76ca21b953b9bed9469493e085 (commit)

commit 912df5b2c31068bfe6679cd6471aed148e69707c
Author: Jérôme Guelfucci 
Date:   Fri Nov 5 18:09:28 2010 +0100

Add desktop file based completion.

This uses some slightly modified code from exo.

 configure.in.in   |1 +
 xfrun/Makefile.am |6 +-
 xfrun/exo-die-desktop-model.c |  750 +
 xfrun/exo-die-desktop-model.h |   72 
 xfrun/xfrun-dialog.c  |   58 
 5 files changed, 886 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 67b3baf..5205cae 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -110,6 +110,7 @@ dnl Check for required packages
 XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.10.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.6.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.7.0])
+XDT_CHECK_PACKAGE([EXO], [exo-1], [0.5.1])
 
 dnl check for dbus and libdbus-glib
 AM_CONDITIONAL([HAVE_DBUS], [test "x$DBUS_FOUND" = "xyes"])
diff --git a/xfrun/Makefile.am b/xfrun/Makefile.am
index 0a76417..b024526 100644
--- a/xfrun/Makefile.am
+++ b/xfrun/Makefile.am
@@ -4,7 +4,9 @@ xfrun4_SOURCES = \
xfrun-history.c \
xfrun-history.h \
xfrun-dialog.c \
-   xfrun-dialog.h
+   xfrun-dialog.h \
+   exo-die-desktop-model.c \
+   exo-die-desktop-model.h
 
 if HAVE_DBUS
 
@@ -23,12 +25,14 @@ xfrun4_CFLAGS = \
-DDBUS_API_SUBJECT_TO_CHANGE \
@LIBXFCE4UTIL_CFLAGS@ \
@LIBXFCE4UI_CFLAGS@ \
+   @EXO_CFLAGS@ \
@GTK_CFLAGS@ \
@DBUS_CFLAGS@
 
 xfrun4_LDADD = \
@LIBXFCE4UTIL_LIBS@ \
@LIBXFCE4UI_LIBS@ \
+   @EXO_LIBS@ \
@GTK_LIBS@ \
@DBUS_LIBS@
 
diff --git a/xfrun/exo-die-desktop-model.c b/xfrun/exo-die-desktop-model.c
new file mode 100644
index 000..5d53d51
--- /dev/null
+++ b/xfrun/exo-die-desktop-model.c
@@ -0,0 +1,750 @@
+/*-
+ * Copyright (c) 2006 Benedikt Meurer .
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include 
+#endif
+
+#ifdef HAVE_MEMORY_H
+#include 
+#endif
+#ifdef HAVE_STRING_H
+#include 
+#endif
+
+#include "exo-die-desktop-model.h"
+
+
+
+typedef struct _ExoDieDesktopItem ExoDieDesktopItem;
+
+
+
+static void   exo_die_desktop_model_tree_model_init   
(GtkTreeModelIface*iface);
+static void   exo_die_desktop_model_finalize  (GObject 
 *object);
+static GtkTreeModelFlags  exo_die_desktop_model_get_flags 
(GtkTreeModel *tree_model);
+static gint   exo_die_desktop_model_get_n_columns 
(GtkTreeModel *tree_model);
+static GType  exo_die_desktop_model_get_column_type   
(GtkTreeModel *tree_model,
+   gint
  column);
+static gboolean   exo_die_desktop_model_get_iter  
(GtkTreeModel *tree_model,
+   
GtkTreeIter  *iter,
+   
GtkTreePath  *path);
+static GtkTreePath   *exo_die_desktop_model_get_path  
(GtkTreeModel *tree_model,
+   
GtkTreeIter  *iter);
+static void   exo_die_desktop_model_get_value 
(GtkTreeModel *tree_model,
+   
GtkTreeIter  *iter,
+   gint
  column,
+   GValue  
 *value);
+static gboolean   exo_die_desktop_model_iter_next 
(GtkTreeModel *tree_model,
+   
GtkTreeIter  *iter);
+static gboolean   exo_die_desktop_mo

[Xfce4-commits] Add a window icon for xfrun4.

2010-11-05 Thread Jérôme Guelfucci
Updating branch refs/heads/completion
 to 28fe32f9f524f135f2efb7ce7e86945f33f6bfec (commit)
   from 912df5b2c31068bfe6679cd6471aed148e69707c (commit)

commit 28fe32f9f524f135f2efb7ce7e86945f33f6bfec
Author: Jérôme Guelfucci 
Date:   Fri Nov 5 18:15:25 2010 +0100

Add a window icon for xfrun4.

 xfrun/xfrun-dialog.c |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/xfrun/xfrun-dialog.c b/xfrun/xfrun-dialog.c
index 5ce4ebf..dc60de7 100644
--- a/xfrun/xfrun-dialog.c
+++ b/xfrun/xfrun-dialog.c
@@ -156,6 +156,7 @@ xfrun_dialog_init(XfrunDialog *dialog)
 
 /* Create the UI */
 GTK_WINDOW(dialog)->type = GTK_WINDOW_TOPLEVEL;
+gtk_window_set_icon_name(GTK_WINDOW(dialog), "system-run");
 gtk_widget_set_size_request(GTK_WIDGET(dialog), 400, -1);
 
 vbox = gtk_vbox_new(FALSE, BORDER/2);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to b2a3f253621666430385a9e0044107b0fa1448df (commit)
   from 1889a7346692385714ff8a87506e8d83b16d2bde (commit)

commit b2a3f253621666430385a9e0044107b0fa1448df
Author: Cheng-Chia Tseng 
Date:   Fri Nov 5 18:02:44 2010 +0100

l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

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

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

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

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 02acd2b..70af0a3 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: xfdesktop 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-11-05 11:09+\n"
-"PO-Revision-Date: 2010-11-06 00:52+0800\n"
+"PO-Revision-Date: 2010-11-06 01:01+0800\n"
 "Last-Translator: Cheng-Chia Tseng \n"
 "Language-Team: Chinese (traditional) \n"
 "Language: zh_TW\n"
@@ -422,7 +422,7 @@ msgstr "按下右鍵時顯示桌面清單(_D)"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:30
 msgid "Show s_ticky windows only in active workspace"
-msgstr "只在活動中的工作區顯示黏性視窗(_T)"
+msgstr "只在活動中的工作區顯示貼黏視窗(_T)"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:31
 msgid "Show workspace _names in list"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 3b21aa0028539458c5d5a0024ed1736f5e1eb5f2 (commit)
   from 8b14ee51a383907e24bb48c9b64c1f6ef8349898 (commit)

commit 3b21aa0028539458c5d5a0024ed1736f5e1eb5f2
Author: Cheng-Chia Tseng 
Date:   Fri Nov 5 17:58:19 2010 +0100

l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

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

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

 po/zh_TW.po |   71 ++
 1 files changed, 32 insertions(+), 39 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 9ce60a9..f37d6fe 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2002-2006 The Xfce development team.
 # This file is distributed under the same license as the libxfcegui4 package.
 # Hydonsingore Cia , 2005.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfcegui4 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-17 18:27+0200\n"
+"POT-Creation-Date: 2010-11-05 11:10+\n"
 "PO-Revision-Date: 2006-06-12 21:23+0800\n"
 "Last-Translator: Hydonsingore Cia \n"
 "Language-Team: Traditional Chinese \n"
-"Language: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
 
 #: ../libxfcegui4/netk-window-action-menu.c:215
 #: ../libxfcegui4/netk-window-action-menu.c:217
@@ -73,9 +73,9 @@ msgstr "該程式是否於執行時需要終端機"
 #. create and populate the XfceAboutInfo struct.
 #. 
-#.
+#. 
 #. 
-#.
+#. 
 #: ../libxfcegui4/xfce-appmenuitem.c:235 ../glade/xfce4.xml.in.h:8
 msgid "Command"
 msgstr "指令"
@@ -96,32 +96,32 @@ msgstr "位於該項目旁主題圖示的名稱"
 #. create and populate the XfceAboutInfo struct.
 #. 
-#.
+#. 
 #. 
-#.
+#. 
 #: ../libxfcegui4/xfce-appmenuitem.c:245 ../glade/xfce4.xml.in.h:27
 msgid "Label"
-msgstr ""
+msgstr "標籤"
 
 #: ../libxfcegui4/xfce-appmenuitem.c:246
 msgid "The label displayed in the item"
-msgstr ""
+msgstr "項目內顯示的標籤"
 
 #: ../libxfcegui4/xfce-appmenuitem.c:250
 msgid "Startup notification"
-msgstr ""
+msgstr "啟動通知"
 
 #: ../libxfcegui4/xfce-appmenuitem.c:251
 msgid "Whether or not the app supports startup notification"
-msgstr ""
+msgstr "程式是否支援啟動通知"
 
 #: ../libxfcegui4/xfce-appmenuitem.c:255
 msgid "Use underline"
-msgstr ""
+msgstr "使用底線"
 
 #: ../libxfcegui4/xfce-appmenuitem.c:256
 msgid "Whether or not to use an underscore in the label as a keyboard mnemonic"
-msgstr ""
+msgstr "是否在標籤內使用底線以幫助記憶鍵盤快速鍵"
 
 #. set window title
 #: ../libxfcegui4/xfce_aboutdialog.c:642
@@ -161,27 +161,24 @@ msgstr "沒有附加系統列圖示,消滅之"
 
 #: ../glade/xfce4.xml.in.h:9
 msgid "Dialog Header"
-msgstr ""
+msgstr "對話標頭"
 
 #: ../glade/xfce4.xml.in.h:10
-#, fuzzy
 msgid "Icon"
-msgstr "圖示名稱"
+msgstr "圖示"
 
 #. TODO: this needs some special setup in the glade helper lib to
 #. create and populate the XfceAboutInfo struct.
 #. 
-#.
+#. 
 #. 
-#.
+#. 
 #: ../glade/xfce4.xml.in.h:18
-#, fuzzy
 msgid "Icon Filename"
-msgstr "圖示名稱"
+msgstr "圖示檔案名稱"
 
 #: ../glade/xfce4.xml.in.h:19
-#, fuzzy
 msgid "Icon Name"
 msgstr "圖示名稱"
 
@@ -189,68 +186,64 @@ msgstr "圖示名稱"
 #. create and populate the XfceAboutInfo struct.
 #. 
-#.
+#. 
 #. 
-#.
+#. 
 #: ../glade/xfce4.xml.in.h:35
 msgid "Launcher Menu Item"
-msgstr ""
+msgstr "啟動器選單項目"
 
 #: ../glade/xfce4.xml.in.h:36
 msgid "Move Handle"
-msgstr ""
+msgstr "移動控制把"
 
 #. TODO: this needs some special setup in the glade helper lib to
 #. create and populate the XfceAboutInfo struct.
 #. 
-#.
+#. 
 #. 
-#.
+#. 
 #: ../glade/xfce4.xml.in.h:44
-#, fuzzy
 msgid "Needs Terminal"
 msgstr "需要終端機"
 
 #: ../glade/xfce4.xml.in.h:45
 msgid "Scaled Image"
-msgstr ""
+msgstr "縮放的影像"
 
 #: ../glade/xfce4.xml.in.h:46
 msgid "Subtitle"
-msgstr ""
+msgstr "子標題"
 
 #. TODO: this needs some special setup in the glade helper lib to
 #. create and populate the XfceAboutInfo struct.
 #. 
-#.
+#. 
 #. 
-#.
+#. 
 #: ../glade/xfce4.xml.in.h:54
 msgid "Supports Startup Notification"
-msgstr ""
+msgstr "支援啟動通知"
 
 #: ../glade/xfce4.xml.in.h:55
 msgid "Title"
-msgstr ""
+msgstr "標題"
 
 #: ../glade/xfce4.xml.in.h:56
 msgid "Titled Dialog"
-msgstr ""
+msgstr "有標題的對話窗"
 
 #: ../glade/xfce4.xml.in.h:57
 msgid "Xfce4 Widgets"
-msgstr ""
+msgstr "Xfce4 小工具"
 
-#, fuzzy
 #~ msgid "Command Shortcut"
 #~ msgstr "指令"
 
-#, fuzzy
 #~ msgid "Command:"
 #~ msgstr "指令"
 
-#, fuzzy
 #~ msgid "Command: %s"
 #~ msgstr "指令"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Silent build.

2010-11-05 Thread Nick Schermer
Updating branch refs/heads/master
 to 22c8a4fecb15a762ec313578dbdc7fbbd87e0acc (commit)
   from ea8ad99ba95cd96f9ff3e717a2516de65480451a (commit)

commit 22c8a4fecb15a762ec313578dbdc7fbbd87e0acc
Author: Nick Schermer 
Date:   Fri Nov 5 17:22:40 2010 +0100

Silent build.

 configure.ac.in  |1 +
 settings-dialogs/Makefile.am |8 
 src/Makefile.am  |   16 
 3 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index ac02f35..0cbfee2 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -32,6 +32,7 @@ AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar])
 AM_CONFIG_HEADER([config.h])
 
 AM_MAINTAINER_MODE()
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 dnl check for UNIX variants
 AC_AIX
diff --git a/settings-dialogs/Makefile.am b/settings-dialogs/Makefile.am
index 0962e97..b2b1485 100644
--- a/settings-dialogs/Makefile.am
+++ b/settings-dialogs/Makefile.am
@@ -87,16 +87,16 @@ BUILT_SOURCES = \
xfwm4-workspace-dialog_ui.h
 
 xfwm4-workspace-dialog_ui.h: xfwm4-workspace-dialog.glade
-   exo-csource --static --strip-comments --strip-content 
--name=workspace_dialog_ui $< >$@
+   $(AM_V_GEN) exo-csource --static --strip-comments --strip-content 
--name=workspace_dialog_ui $< >$@
 
 xfwm4-dialog_ui.h: xfwm4-dialog.glade
-   exo-csource --static --strip-comments --strip-content 
--name=xfwm4_dialog_ui $< >$@
+   $(AM_V_GEN) exo-csource --static --strip-comments --strip-content 
--name=xfwm4_dialog_ui $< >$@
 
 xfwm4-tweaks-dialog_ui.h: xfwm4-tweaks-dialog.glade
-   exo-csource --static --strip-comments --strip-content 
--name=tweaks_dialog_ui $< >$@
+   $(AM_V_GEN) exo-csource --static --strip-comments --strip-content 
--name=tweaks_dialog_ui $< >$@
 
 monitor-icon.h: $(srcdir)/monitor-icon.png
-   gdk-pixbuf-csource --raw --build-list \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list \
monitor_icon_data $(srcdir)/monitor-icon.png > monitor-icon.h
 
 endif
diff --git a/src/Makefile.am b/src/Makefile.am
index 11a4f99..c13a2b9 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -130,33 +130,33 @@ noinst_DATA = 
\
inline-stock-rolldown.h stock_rolldown.png
 
 build.h:
-   echo "#define BUILD_ID \""`date +%H%M-%y%m%d`"\"" > build.h
+   $(AM_V_GEN) echo "#define BUILD_ID \""`date +%H%M-%y%m%d`"\"" > build.h
 
 inline-tabwin-icon.h: $(srcdir)/tabwin-icon.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
tabwin_icon_data $(srcdir)/tabwin-icon.png > inline-tabwin-icon.h
 
 inline-default-icon.h: $(srcdir)/default_icon.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
default_icon_data $(srcdir)/default_icon.png > inline-default-icon.h
 
 inline-stock-maximize.h: $(srcdir)/stock_maximize.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
stock_maximize_data $(srcdir)/stock_maximize.png > 
inline-stock-maximize.h
 
 inline-stock-unmaximize.h: $(srcdir)/stock_unmaximize.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
stock_unmaximize_data $(srcdir)/stock_unmaximize.png > 
inline-stock-unmaximize.h
 
 inline-stock-minimize.h: $(srcdir)/stock_minimize.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
stock_minimize_data $(srcdir)/stock_minimize.png > 
inline-stock-minimize.h
 
 inline-stock-rollup.h: $(srcdir)/stock_rollup.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
stock_rollup_data $(srcdir)/stock_rollup.png > inline-stock-rollup.h
 
 inline-stock-rolldown.h: $(srcdir)/stock_rolldown.png
-   gdk-pixbuf-csource --raw --build-list   \
+   $(AM_V_GEN) gdk-pixbuf-csource --raw --build-list   \
stock_rolldown_data $(srcdir)/stock_rolldown.png > 
inline-stock-rolldown.h
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 3d432d059c5fd7e806ee8b52607feeffe4a87fef (commit)
   from 987f0b9e121aad4e715e98b00e0dc8f071566784 (commit)

commit 3d432d059c5fd7e806ee8b52607feeffe4a87fef
Author: Harald Servat 
Date:   Fri Nov 5 17:04:09 2010 +0100

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index 9c8ea9b..044b193 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,12 +3,12 @@
 # This file is distributed under the same license as the thunar package.
 # Pau Ruŀlan Ferragut  2005-2008.
 # Carles Muñoz Gorriz , 2006, 2008-2009.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-12-18 20:02+\n"
+"POT-Creation-Date: 2010-11-05 11:10+\n"
 "PO-Revision-Date: 2009-12-19 11:15+0100\n"
 "Last-Translator: Carles Muñoz Gorriz \n"
 "Language-Team: Catalan \n"
@@ -16,9 +16,99 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: KBabel 1.11.2\n"
 "X-Poedit-Language: Catalan\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Generator: KBabel 1.11.2\n"
+
+#: ../thunar-vfs/exo-hal.c:434
+#, c-format
+msgid "External %s Drive"
+msgstr "Unitat externa %s"
+
+#: ../thunar-vfs/exo-hal.c:436
+#, c-format
+msgid "%s Drive"
+msgstr "Unitat %s"
+
+#: ../thunar-vfs/exo-hal.c:445
+msgid "External Floppy Drive"
+msgstr "Unitat externa de disc flexible"
+
+#: ../thunar-vfs/exo-hal.c:447
+msgid "Floppy Drive"
+msgstr "Unitat de disc flexible"
+
+#: ../thunar-vfs/exo-hal.c:451
+msgid "Compact Flash Drive"
+msgstr "Unitat de Compact Flash"
+
+#: ../thunar-vfs/exo-hal.c:455
+msgid "Memory Stick Drive"
+msgstr "Unitat de Memory Stick"
+
+#: ../thunar-vfs/exo-hal.c:459
+msgid "Smart Media Drive"
+msgstr "Unitat de Smart Media"
+
+#: ../thunar-vfs/exo-hal.c:463
+msgid "SD/MMC Drive"
+msgstr "Unitat de SD/MMC"
+
+#: ../thunar-vfs/exo-hal.c:467
+msgid "Zip Drive"
+msgstr "Unitat Zip"
+
+#: ../thunar-vfs/exo-hal.c:471
+msgid "Jaz Drive"
+msgstr "Unitat Jaz"
+
+#: ../thunar-vfs/exo-hal.c:475
+msgid "Pen Drive"
+msgstr "Memòria USB"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:484
+#, c-format
+msgid "%s Music Player"
+msgstr "Reproductor de música %s"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:499
+#, c-format
+msgid "%s Digital Camera"
+msgstr "Càmara digital %s"
+
+#. last fallback to "Drive"
+#: ../thunar-vfs/exo-hal.c:522
+msgid "Drive"
+msgstr "Unitat"
+
+#: ../thunar-vfs/exo-hal.c:739
+#, c-format
+msgid "Blank %s Disc"
+msgstr "Esborrar el disc %s"
+
+#: ../thunar-vfs/exo-hal.c:741
+#, c-format
+msgid "%s Disc"
+msgstr "Disc %s"
+
+#. special case for pure audio disc
+#: ../thunar-vfs/exo-hal.c:746
+msgid "Audio CD"
+msgstr "CD d'àudio"
+
+#: ../thunar-vfs/exo-hal.c:782
+#, c-format
+msgid "%s Removable Volume"
+msgstr "Volum extraïble %s"
+
+#: ../thunar-vfs/exo-hal.c:784
+#, c-format
+msgid "%s Volume"
+msgstr "Volum %s"
 
 #: ../thunar-vfs/exo-mount-point.c:218 ../thunar-vfs/exo-mount-point.c:247
 #: ../thunar-vfs/exo-mount-point.c:435
@@ -28,36 +118,46 @@ msgstr "No s'ha pogut obrir el fitxer «%s»: %s"
 
 #. base directory not readable
 #: ../thunar-vfs/thunar-vfs-deep-count-job.c:233
+#, c-format
 msgid "Failed to read folder contents"
 msgstr "No s'ha pogut llegir el contingut de la carpeta"
 
-#: ../thunar-vfs/thunar-vfs-exec.c:590
+#: ../thunar-vfs/thunar-vfs-exec.c:597
+#, c-format
 msgid "Unknown error"
 msgstr "Error desconegut"
 
-#. TRANSLATORS: `Exec' is a field name in a .desktop file. You should leave it 
as-is.
+#. TRANSLATORS: `Exec' is a field name in a .desktop file. You should leave it
+#. as-is.
 #: ../thunar-vfs/thunar-vfs-info.c:390
+#, c-format
 msgid "No Exec field specified"
 msgstr "No heu especificat el camp Exec"
 
-#. TRANSLATORS: `URL' is a field name in a .desktop file. You should leave it 
as-is.
+#. TRANSLATORS: `URL' is a field name in a .desktop file. You should leave it
+#. as-is.
 #: ../thunar-vfs/thunar-vfs-info.c:409
+#, c-format
 msgid "No URL field specified"
 msgstr "No heu especificat el camp URL"
 
 #: ../thunar-vfs/thunar-vfs-info.c:414 ../thunar-vfs/thunar-vfs-private.c:384
+#, c-format
 msgid "Invalid desktop file"
 msgstr "El nom de l'escriptori no és vàlid"
 
 #: ../thunar-vfs/thunar-vfs-info.c:422
+#, c-format
 msgid "Failed to parse file"
 msgstr "No s'ha pogut analitzar el fitxer"
 
 #: ../thunar-vfs/thunar-vfs-info.c:503
+#, c-format
 msgid "Invalid file n

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to f6831efbee8f61d8ab6715cacacf6101f774c2c7 (commit)
   from 38665aa1cbd639bb8680c57695cca16fbfcbbc37 (commit)

commit f6831efbee8f61d8ab6715cacacf6101f774c2c7
Author: Harald Servat 
Date:   Fri Nov 5 17:01:09 2010 +0100

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

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

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

 po/ca.po |  445 +++---
 1 files changed, 137 insertions(+), 308 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 25eb942..0793766 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,24 +2,23 @@
 # Copyright (C) 2008 THE xfce'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce package.
 # Carles Muñoz Gorriz , 2008-2010.
-#
-#: ../xfsettingsd/main.c:127
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce 4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-31 10:06+\n"
+"POT-Creation-Date: 2010-11-05 11:09+\n"
 "PO-Revision-Date: 2010-08-31 17:46+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-Country: SPAIN\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: SPAIN\n"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:1
 msgid "Acceleration _profile:"
@@ -83,12 +82,8 @@ msgid "The amount of time, in milliseconds, required between 
keystrokes"
 msgstr "El temps que cal, en milisegons, entre codis de tecla"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:16
-msgid ""
-"The amount of time, in milliseconds, that must elapse before a keystroke "
-"will be accepted"
-msgstr ""
-"El temps, en milisegons, que ha de passar abans que s'accepti un codi de "
-"tecla"
+msgid "The amount of time, in milliseconds, that must elapse before a 
keystroke will be accepted"
+msgstr "El temps, en milisegons, que ha de passar abans que s'accepti un codi 
de tecla"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:17
 msgid "The maximum pointer speed after acceleration"
@@ -103,33 +98,20 @@ msgid "The time, in milliseconds, between repeated motion 
events"
 msgstr "El temps en milisegons entre dos esdeveniments de repetició"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:20
-msgid ""
-"The time, in milliseconds, between the initial key press and first repeated "
-"motion event"
-msgstr ""
-"El temps en milisegons entre el pitjament de tecla inicial i el primer "
-"esdeveniment de repetició"
+msgid "The time, in milliseconds, between the initial key press and first 
repeated motion event"
+msgstr "El temps en milisegons entre el pitjament de tecla inicial i el primer 
esdeveniment de repetició"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:21
 msgid "The time, in milliseconds, to get to maximum speed"
 msgstr "El temps en milisegons per obtenir la velocitat màxima"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:22
-msgid ""
-"To help prevent accidental keystrokes, slow keys requires that a key is held "
-"for a certain minimum amount of time before the keystroke will be accepted"
-msgstr ""
-"Per evitar pitjar accidentalment alguna tecla, les tecles lentes fan que "
-"calgui que una tecla romangui pitjada una quantitat mínima de temps abans "
-"que s'accepti el codi de tecla"
+msgid "To help prevent accidental keystrokes, slow keys requires that a key is 
held for a certain minimum amount of time before the keystroke will be accepted"
+msgstr "Per evitar pitjar accidentalment alguna tecla, les tecles lentes fan 
que calgui que una tecla romangui pitjada una quantitat mínima de temps abans 
que s'accepti el codi de tecla"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:23
-msgid ""
-"To help prevent accidental multiple keystrokes, bounce keys imposes a "
-"minimum delay between keystrokes"
-msgstr ""
-"Per evitar pitjar accidentalment més d'una tecla alhora, el rebot de tecles "
-"imposa un retard mínim entre codis de tecles"
+msgid "To help prevent accidental multiple keystrokes, bounce keys imposes a 
minimum delay between keystrokes"
+msgstr "Per evitar pitjar accidentalment més d'una tecla alhora, el rebot de 
tecles imposa un retard mínim entre codis de tecles"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:24
 msgid "Use _bounce keys"
@@ -144,38 +126,20 @@ msgid "Use slow _keys"
 msgstr "Activa les _tecles lentes"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:27
-msgid ""
-"When selected, modifier keys (such as Control, Alt, and Shift) do not need "
-"to be held down (they can be pressed and then released) when

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 7c4772deab44cea22d9beef3fe16e3a0de3d32f6 (commit)
   from 91c817e8bdf66a0cf992c2eaa17a335e973ad2a0 (commit)

commit 7c4772deab44cea22d9beef3fe16e3a0de3d32f6
Author: Harald Servat 
Date:   Fri Nov 5 17:00:13 2010 +0100

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

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

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

 po/ca.po |  208 +++---
 1 files changed, 78 insertions(+), 130 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 2e86f76..c3d5eee 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -4,19 +4,19 @@
 # This file is distributed under the same license as the exo package.
 # Pau Ruŀlan Ferragut  2005, 2006, 2007.
 # Carles Muñoz Gorriz , 2006, 2008-2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: exo 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-07-21 18:14+0200\n"
+"POT-Creation-Date: 2010-11-05 11:00+\n"
 "PO-Revision-Date: 2010-04-11 15:32+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"
@@ -68,11 +68,8 @@ msgstr "No s'ha pogut crear «%s»: %s"
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
-msgid ""
-"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
-msgstr ""
-"No s'ha pogut carregar la imatge «%s»: raó desconeguda; probablement el "
-"fitxer està corromput."
+msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image 
file"
+msgstr "No s'ha pogut carregar la imatge «%s»: raó desconeguda; probablement 
el fitxer està corromput."
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
@@ -249,8 +246,7 @@ msgstr "Habilita la cerca"
 
 #: ../exo/exo-icon-view.c:677
 msgid "View allows user to search through columns interactively"
-msgstr ""
-"Vista que permet a l'usuari buscar de manera interactiva mitjançant columnes"
+msgstr "Vista que permet a l'usuari buscar de manera interactiva mitjançant 
columnes"
 
 #: ../exo/exo-icon-view.c:694
 msgid "Width for each item"
@@ -282,8 +278,7 @@ msgstr "Columna d'etiquetatge"
 
 #: ../exo/exo-icon-view.c:748
 msgid "Model column used to retrieve the text if using Pango markup"
-msgstr ""
-"Columna del model d'on obtenir el text si es fa servir el marcatge Pango"
+msgstr "Columna del model d'on obtenir el text si es fa servir el marcatge 
Pango"
 
 #: ../exo/exo-icon-view.c:762
 msgid "Icon View Model"
@@ -294,8 +289,7 @@ msgid "The model for the icon view"
 msgstr "El model per la vista d'icones"
 
 #: ../exo/exo-icon-view.c:777
-msgid ""
-"How the text and icon of each item are positioned relative to each other"
+msgid "How the text and icon of each item are positioned relative to each 
other"
 msgstr "Posicionament relatiu entre el text i la icona de cada element"
 
 #: ../exo/exo-icon-view.c:809
@@ -343,12 +337,8 @@ msgid "Single Click Timeout"
 msgstr "Temps d'espera pel clic senzill"
 
 #: ../exo/exo-icon-view.c:889 ../exo/exo-tree-view.c:172
-msgid ""
-"The amount of time after which the item under the mouse cursor will be "
-"selected automatically in single click mode"
-msgstr ""
-"El temps que transcorrerà quan el cursor estigui sobre un element que s'hagi "
-"seleccionat automàticament al mode de clic senzill."
+msgid "The amount of time after which the item under the mouse cursor will be 
selected automatically in single click mode"
+msgstr "El temps que transcorrerà quan el cursor estigui sobre un element que 
s'hagi seleccionat automàticament al mode de clic senzill."
 
 #: ../exo/exo-icon-view.c:904
 msgid "Spacing"
@@ -407,13 +397,8 @@ msgid "_Add a new toolbar"
 msgstr "_Afegeix una barra d'eines nova"
 
 #: ../exo/exo-toolbars-editor.c:221
-msgid ""
-"Drag an item onto the toolbars above to add it, from the toolbars in the "
-"items table to remove it."
-msgstr ""
-"Arrossega un element a les barres d'eines superiors per a afegir-lo. "
-"Arrossegueu-lo des de les barres d'eines a la taula d'elements per a "
-"suprimir-lo."
+msgid "Drag an item onto the toolbars above to add it, from the toolbars in 
the items table to remove it."
+msgstr "Arrossega un element a les barres d'eines superiors per a afegir-lo. 
Arrossegueu-lo des de les barres d'eines a la taula d'elements per a 
suprimir-lo."
 
 #: ../exo/exo-toolbars-editor.c:538
 msgid "Separator"
@@ -619,37 +604,44 @@ msgstr "Seqüències de shell"
 msgid "Create Launcher %s"
 msgstr "Crea un llançador %s"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 3d9f369db523259a228f17a3072f7df0bd0aa5ab (commit)
   from af7cdc9f0918bb9db1a28a65872c39fe6be4691a (commit)

commit 3d9f369db523259a228f17a3072f7df0bd0aa5ab
Author: Harald Servat 
Date:   Fri Nov 5 17:00:54 2010 +0100

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index 913835d..1fff6bd 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-23 10:08+\n"
+"POT-Creation-Date: 2010-11-05 11:08+\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Carles Muñoz Gorriz \n"
 "Language-Team: catalan \n"
@@ -678,8 +678,8 @@ msgid "Select this option to show the generic application 
name in the menu, for
 msgstr "Seleccioneu aquesta opció mer veure els noms genèrics d'aplicacions al 
menú (e.g.: «Gestor de fitxers» en lloc de «Thunar»)."
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:8
-msgid "Show application description in t_ooltip"
-msgstr "Mostra la descripció de les aplicacions als _rètols emergents"
+msgid "Show application d_escription in tooltip"
+msgstr "Mostra la d_escripció de les aplicacions als rètols emergents"
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:9
 msgid "Show generic application n_ames"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to b1c5b7a3aaa7eda5cca1e5cfba692be9a62dc573 (commit)
   from 7c4772deab44cea22d9beef3fe16e3a0de3d32f6 (commit)

commit b1c5b7a3aaa7eda5cca1e5cfba692be9a62dc573
Author: Harald Servat 
Date:   Fri Nov 5 17:00:18 2010 +0100

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index c3d5eee..0e2aca7 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1176,7 +1176,6 @@ msgid "GNOME Terminal"
 msgstr "Terminal del GNOME"
 
 #: ../exo-helper/helpers/icedove.desktop.in.in.h:1
-#, fuzzy
 msgid "Icedove"
 msgstr "Icedove"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 987f0b9e121aad4e715e98b00e0dc8f071566784 (commit)
   from 9a4269a770a811b39eb8d20d2b2a560b900d9f71 (commit)

commit 987f0b9e121aad4e715e98b00e0dc8f071566784
Author: Cheng-Chia Tseng 
Date:   Fri Nov 5 16:57:58 2010 +0100

l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

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

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

 po/zh_TW.po |  101 ---
 1 files changed, 96 insertions(+), 5 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index f4ffbdd..6c41412 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar master\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-03 22:07+\n"
-"PO-Revision-Date: 2010-08-23 16:45+0800\n"
+"POT-Creation-Date: 2010-11-05 11:10+\n"
+"PO-Revision-Date: 2010-11-05 23:57+0800\n"
 "Last-Translator: Cheng-Chia Tseng \n"
 "Language-Team: Chinese (traditional) \n"
 "MIME-Version: 1.0\n"
@@ -18,7 +18,96 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../thunar-vfs/exo-mount-point.c:218 ../thunar-vfs/exo-mount-point.c:247
+#: ../thunar-vfs/exo-hal.c:434
+#, c-format
+msgid "External %s Drive"
+msgstr "外接 %s 裝置"
+
+#: ../thunar-vfs/exo-hal.c:436
+#, c-format
+msgid "%s Drive"
+msgstr "%s 裝置"
+
+#: ../thunar-vfs/exo-hal.c:445
+msgid "External Floppy Drive"
+msgstr "外接軟碟裝置"
+
+#: ../thunar-vfs/exo-hal.c:447
+msgid "Floppy Drive"
+msgstr "軟碟裝置"
+
+#: ../thunar-vfs/exo-hal.c:451
+msgid "Compact Flash Drive"
+msgstr "Compact Flash 裝置"
+
+#: ../thunar-vfs/exo-hal.c:455
+msgid "Memory Stick Drive"
+msgstr "Memory Stick 裝置"
+
+#: ../thunar-vfs/exo-hal.c:459
+msgid "Smart Media Drive"
+msgstr "Smart Media 裝置"
+
+#: ../thunar-vfs/exo-hal.c:463
+msgid "SD/MMC Drive"
+msgstr "SD/MMC 裝置"
+
+#: ../thunar-vfs/exo-hal.c:467
+msgid "Zip Drive"
+msgstr "Zip 裝置"
+
+#: ../thunar-vfs/exo-hal.c:471
+msgid "Jaz Drive"
+msgstr "Jaz 裝置"
+
+#: ../thunar-vfs/exo-hal.c:475
+msgid "Pen Drive"
+msgstr "隨身碟裝置"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty 
string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:484
+#, c-format
+msgid "%s Music Player"
+msgstr "%s 音樂播放器"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty 
string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:499
+#, c-format
+msgid "%s Digital Camera"
+msgstr "%s 數位相機"
+
+#. last fallback to "Drive"
+#: ../thunar-vfs/exo-hal.c:522
+msgid "Drive"
+msgstr "裝置"
+
+#: ../thunar-vfs/exo-hal.c:739
+#, c-format
+msgid "Blank %s Disc"
+msgstr "空白 %s 光碟"
+
+#: ../thunar-vfs/exo-hal.c:741
+#, c-format
+msgid "%s Disc"
+msgstr "%s 光碟"
+
+#. special case for pure audio disc
+#: ../thunar-vfs/exo-hal.c:746
+msgid "Audio CD"
+msgstr "音訊 CD"
+
+#: ../thunar-vfs/exo-hal.c:782
+#, c-format
+msgid "%s Removable Volume"
+msgstr "%s 可移除式儲存裝置"
+
+#: ../thunar-vfs/exo-hal.c:784
+#, c-format
+msgid "%s Volume"
+msgstr "%s 儲存裝置"
+
+#: ../thunar-vfs/exo-mount-point.c:218
+#: ../thunar-vfs/exo-mount-point.c:247
 #: ../thunar-vfs/exo-mount-point.c:435
 #, c-format
 msgid "Failed to open file \"%s\": %s"
@@ -30,7 +119,7 @@ msgstr "無法開啟檔案「%s」:%s"
 msgid "Failed to read folder contents"
 msgstr "無法讀取資料夾內容"
 
-#: ../thunar-vfs/thunar-vfs-exec.c:590
+#: ../thunar-vfs/thunar-vfs-exec.c:597
 #, c-format
 msgid "Unknown error"
 msgstr "未知的錯誤"
@@ -47,7 +136,8 @@ msgstr "Exec 欄並未指定"
 msgid "No URL field specified"
 msgstr "URL 欄並未指定"
 
-#: ../thunar-vfs/thunar-vfs-info.c:414 ../thunar-vfs/thunar-vfs-private.c:384
+#: ../thunar-vfs/thunar-vfs-info.c:414
+#: ../thunar-vfs/thunar-vfs-private.c:384
 #, c-format
 msgid "Invalid desktop file"
 msgstr "無效的桌面檔案"
@@ -377,3 +467,4 @@ msgstr "無法決定 %s 的掛載點"
 #, c-format
 msgid "Failed to connect to the HAL daemon: %s"
 msgstr "無法連接至 HAL 幕後程式:%s"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 38665aa1cbd639bb8680c57695cca16fbfcbbc37 (commit)
   from 2ffbc2a91859df0d6f2512b0da2291dea107a809 (commit)

commit 38665aa1cbd639bb8680c57695cca16fbfcbbc37
Author: Cheng-Chia Tseng 
Date:   Fri Nov 5 16:51:46 2010 +0100

l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

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

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

 po/zh_TW.po |  115 +++
 1 files changed, 53 insertions(+), 62 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 5070725..b7e8d7c 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2010 THE xfce4's COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-settings 
package.
 # Cheng-Chia Tseng , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-31 10:06+\n"
+"POT-Creation-Date: 2010-11-05 11:09+\n"
 "PO-Revision-Date: 2010-09-03 19:40+0800\n"
 "Last-Translator: Cheng-Chia Tseng \n"
 "Language-Team: chinese-l10n \n"
@@ -164,62 +164,51 @@ msgstr "像素/秒"
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:87
 #: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39
-#: ../dialogs/mouse-settings/main.c:100
+#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
 msgid "Settings manager socket"
 msgstr "設定值管理員 socket"
 
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:87
 #: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39
-#: ../dialogs/mouse-settings/main.c:100
+#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
 msgid "SOCKET ID"
 msgstr "SOCKET ID"
 
 #: ../dialogs/accessibility-settings/main.c:45
 #: ../dialogs/appearance-settings/main.c:88
 #: ../dialogs/display-settings/main.c:104
-#: ../dialogs/keyboard-settings/main.c:40
-#: ../dialogs/mouse-settings/main.c:101
-#: ../xfce4-settings-editor/main.c:43
-#: ../xfce4-settings-helper/main.c:74
-#: ../xfce4-settings-manager/main.c:40
-#: ../xfsettingsd/main.c:52
+#: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mouse-settings/main.c:101
+#: ../xfce4-settings-editor/main.c:43 ../xfce4-settings-helper/main.c:74
+#: ../xfce4-settings-manager/main.c:40 ../xfsettingsd/main.c:52
 msgid "Version information"
 msgstr "版本資訊"
 
 #: ../dialogs/accessibility-settings/main.c:143
-#: ../dialogs/appearance-settings/main.c:773
+#: ../dialogs/appearance-settings/main.c:827
 #: ../dialogs/display-settings/main.c:1046
 #: ../dialogs/keyboard-settings/main.c:64
-#: ../dialogs/mouse-settings/main.c:1186
-#: ../xfce4-settings-editor/main.c:63
-#: ../xfce4-settings-helper/main.c:160
-#: ../xfce4-settings-manager/main.c:58
+#: ../dialogs/mouse-settings/main.c:1188 ../xfce4-settings-editor/main.c:63
+#: ../xfce4-settings-helper/main.c:160 ../xfce4-settings-manager/main.c:58
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "輸入 '%s --help' 以了解用法。"
 
 #: ../dialogs/accessibility-settings/main.c:162
-#: ../dialogs/appearance-settings/main.c:792
+#: ../dialogs/appearance-settings/main.c:846
 #: ../dialogs/display-settings/main.c:1065
 #: ../dialogs/keyboard-settings/main.c:80
-#: ../dialogs/mouse-settings/main.c:1205
-#: ../xfce4-settings-editor/main.c:82
-#: ../xfce4-settings-helper/main.c:176
-#: ../xfce4-settings-manager/main.c:71
+#: ../dialogs/mouse-settings/main.c:1207 ../xfce4-settings-editor/main.c:82
+#: ../xfce4-settings-helper/main.c:176 ../xfce4-settings-manager/main.c:71
 msgid "The Xfce development team. All rights reserved."
 msgstr "Xfce 開發團隊。保留所有權利。"
 
 #: ../dialogs/accessibility-settings/main.c:163
-#: ../dialogs/appearance-settings/main.c:793
+#: ../dialogs/appearance-settings/main.c:847
 #: ../dialogs/display-settings/main.c:1066
 #: ../dialogs/keyboard-settings/main.c:81
-#: ../dialogs/mouse-settings/main.c:1206
-#: ../xfce4-settings-editor/main.c:83
-#: ../xfce4-settings-helper/main.c:177
-#: ../xfce4-settings-manager/main.c:72
+#: ../dialogs/mouse-settings/main.c:1208 ../xfce4-settings-editor/main.c:83
+#: ../xfce4-settings-helper/main.c:177 ../xfce4-settings-manager/main.c:72
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "請回報錯誤至 <%s>。"
@@ -316,7 +305,7 @@ msgid "Menus and Buttons"
 msgstr "選單與按鈕"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:22
-#: ../dialogs/appearance-settings/main.c:670
+#: ../dialogs/appearance-settings/main.c:724
 #: ../dialogs/display-settings/main.c:80
 msgid "None"
 msgstr "無"
@@ -397,19 +386,19 @@ msgstr "設定值(_S)"
 msgid "_Toolbar Style"
 msgstr "工具列樣式(_T)"
 
-#: ../dialogs/appearance-settings/main.c:674
+#: ../dialogs/appearance-settings/main.c:728
 msgid "RGB"
 msgstr "RGB"
 
-#: ../dialogs/appearance-settings/main.c:678
+#: ../dialogs/appear

[Xfce4-commits] l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to af7cdc9f0918bb9db1a28a65872c39fe6be4691a (commit)
   from 14d2945bd042401b2f71551a7febd8c55dc60281 (commit)

commit af7cdc9f0918bb9db1a28a65872c39fe6be4691a
Author: Cheng-Chia Tseng 
Date:   Fri Nov 5 16:50:51 2010 +0100

l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

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

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

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

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 24f25b9..d19 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-25 04:08+\n"
+"POT-Creation-Date: 2010-11-05 11:08+\n"
 "PO-Revision-Date: 2010-09-10 13:02+0800\n"
 "Last-Translator: Cheng-Chia Tseng \n"
 "Language-Team: Chinese (traditional) \n"
@@ -670,8 +670,8 @@ msgid "Select this option to show the generic application 
name in the menu, for
 msgstr "選取此選項以在選單內顯示通用應用程式名稱,舉例:「檔案管理員」而不是「Thunar」"
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:8
-msgid "Show application description in t_ooltip"
-msgstr "於提示框顯示應用程式描述(_O)"
+msgid "Show application d_escription in tooltip"
+msgstr "於提示框顯示應用程式描述(_E)"
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:9
 msgid "Show generic application n_ames"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 91c817e8bdf66a0cf992c2eaa17a335e973ad2a0 (commit)
   from f09b5e50c8ce1196ea75d7dc3a347696ddfa9bf2 (commit)

commit 91c817e8bdf66a0cf992c2eaa17a335e973ad2a0
Author: Cheng-Chia Tseng 
Date:   Fri Nov 5 16:50:00 2010 +0100

l10n: Updated Chinese (Taiwan) (zh_TW) translation to 100%

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

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

 po/zh_TW.po |  124 --
 1 files changed, 60 insertions(+), 64 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 24b1bb3..a8a70f9 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,12 +3,12 @@
 # This file is distributed under the same license as the exo package.
 # Hydonsingore Cia 
 # Cheng-Chia Tseng 
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: exo 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-10 04:00+\n"
+"POT-Creation-Date: 2010-11-05 11:00+\n"
 "PO-Revision-Date: 2010-09-10 12:53+0800\n"
 "Last-Translator: Cheng-Chia Tseng \n"
 "Language-Team: Chinese (traditional) \n"
@@ -71,8 +71,7 @@ msgstr "無法載入影像「%s」:原因未知,可能肇因於影像檔案
 msgid "Failed to open \"%s\"."
 msgstr "無法開啟「%s」。"
 
-#: ../exo/exo-icon-bar.c:277
-#: ../exo/exo-icon-view.c:776
+#: ../exo/exo-icon-bar.c:277 ../exo/exo-icon-view.c:776
 msgid "Orientation"
 msgstr "方向"
 
@@ -80,23 +79,19 @@ msgstr "方向"
 msgid "The orientation of the iconbar"
 msgstr "圖示列的方向"
 
-#: ../exo/exo-icon-bar.c:294
-#: ../exo/exo-icon-view.c:793
+#: ../exo/exo-icon-bar.c:294 ../exo/exo-icon-view.c:793
 msgid "Pixbuf column"
 msgstr "Pixbuf 欄"
 
-#: ../exo/exo-icon-bar.c:295
-#: ../exo/exo-icon-view.c:794
+#: ../exo/exo-icon-bar.c:295 ../exo/exo-icon-view.c:794
 msgid "Model column used to retrieve the icon pixbuf from"
 msgstr "用來接收圖示 pixbuf 的模型欄"
 
-#: ../exo/exo-icon-bar.c:310
-#: ../exo/exo-icon-view.c:920
+#: ../exo/exo-icon-bar.c:310 ../exo/exo-icon-view.c:920
 msgid "Text column"
 msgstr "文字欄"
 
-#: ../exo/exo-icon-bar.c:311
-#: ../exo/exo-icon-view.c:921
+#: ../exo/exo-icon-bar.c:311 ../exo/exo-icon-view.c:921
 msgid "Model column used to retrieve the text from"
 msgstr "用來接收文字的模型欄"
 
@@ -116,33 +111,27 @@ msgstr "活動中"
 msgid "Active item index"
 msgstr "活動中項目索引"
 
-#: ../exo/exo-icon-bar.c:347
-#: ../exo/exo-icon-bar.c:348
+#: ../exo/exo-icon-bar.c:347 ../exo/exo-icon-bar.c:348
 msgid "Active item fill color"
 msgstr "活動中項目填充色彩"
 
-#: ../exo/exo-icon-bar.c:354
-#: ../exo/exo-icon-bar.c:355
+#: ../exo/exo-icon-bar.c:354 ../exo/exo-icon-bar.c:355
 msgid "Active item border color"
 msgstr "活動中項目邊緣色彩"
 
-#: ../exo/exo-icon-bar.c:361
-#: ../exo/exo-icon-bar.c:362
+#: ../exo/exo-icon-bar.c:361 ../exo/exo-icon-bar.c:362
 msgid "Active item text color"
 msgstr "活動中項目文字色彩"
 
-#: ../exo/exo-icon-bar.c:368
-#: ../exo/exo-icon-bar.c:369
+#: ../exo/exo-icon-bar.c:368 ../exo/exo-icon-bar.c:369
 msgid "Cursor item fill color"
 msgstr "游標項目填充色彩"
 
-#: ../exo/exo-icon-bar.c:375
-#: ../exo/exo-icon-bar.c:376
+#: ../exo/exo-icon-bar.c:375 ../exo/exo-icon-bar.c:376
 msgid "Cursor item border color"
 msgstr "游標項目邊緣色彩"
 
-#: ../exo/exo-icon-bar.c:382
-#: ../exo/exo-icon-bar.c:383
+#: ../exo/exo-icon-bar.c:382 ../exo/exo-icon-bar.c:383
 msgid "Cursor item text color"
 msgstr "游標項目文字色彩"
 
@@ -212,8 +201,7 @@ msgid "All Icons"
 msgstr "所有圖示"
 
 #. EXO_ICON_CHOOSER_CONTEXT_FILE
-#: ../exo/exo-icon-chooser-dialog.c:139
-#: ../exo/exo-icon-chooser-dialog.c:285
+#: ../exo/exo-icon-chooser-dialog.c:139 ../exo/exo-icon-chooser-dialog.c:285
 msgid "Image Files"
 msgstr "影像檔案"
 
@@ -331,23 +319,19 @@ msgstr "選取模式"
 msgid "The selection mode"
 msgstr "選取模式"
 
-#: ../exo/exo-icon-view.c:871
-#: ../exo/exo-tree-view.c:154
+#: ../exo/exo-icon-view.c:871 ../exo/exo-tree-view.c:154
 msgid "Single Click"
 msgstr "單擊"
 
-#: ../exo/exo-icon-view.c:872
-#: ../exo/exo-tree-view.c:155
+#: ../exo/exo-icon-view.c:872 ../exo/exo-tree-view.c:155
 msgid "Whether the items in the view can be activated with single clicks"
 msgstr "在此檢視的項目可否以單擊啟動之"
 
-#: ../exo/exo-icon-view.c:888
-#: ../exo/exo-tree-view.c:171
+#: ../exo/exo-icon-view.c:888 ../exo/exo-tree-view.c:171
 msgid "Single Click Timeout"
 msgstr "單一點擊逾時期"
 
-#: ../exo/exo-icon-view.c:889
-#: ../exo/exo-tree-view.c:172
+#: ../exo/exo-icon-view.c:889 ../exo/exo-tree-view.c:172
 msgid "The amount of time after which the item under the mouse cursor will be 
selected automatically in single click mode"
 msgstr "在單一點擊模式下,當滑鼠游標指向某個物件超過此量的時間後將會自動選取該項目"
 
@@ -379,8 +363,7 @@ msgstr "選取盒的不透明度"
 msgid "Preview"
 msgstr "預覽"
 
-#: ../exo/exo-thumbnail-preview.c:129
-#: ../exo/exo-thumbnail-preview.c:271
+#: ../exo/exo-thumbnail-preview.c:129 ../exo/exo-thumbnail-preview.c:271
 msgid "No file selected"
 msgstr "未選取檔案"
 
@@ -538,8 +521,7 @@ msgstr "  --strip-comments  從 XML 檔案移除註解\n"
 msgid "  --strip-content   Remove node contents from XML files\n"
 msgstr "  --strip-content   從 XML 檔案移除 node 內容\n"
 
-#: ../e

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 14d2945bd042401b2f71551a7febd8c55dc60281 (commit)
   from dde8eb178f9146c14613e60021fb06d9092b2861 (commit)

commit 14d2945bd042401b2f71551a7febd8c55dc60281
Author: Masato Hashimoto 
Date:   Fri Nov 5 15:58:11 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

 po/ja.po |  164 -
 1 files changed, 118 insertions(+), 46 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 826c99c..ad558cf 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,22 +1,22 @@
 # $Id$
-# 
+#
 # Japanese translations for xfce4-panel package.
 # Copyright (C) 2002-2007 The Xfce development team.
 # This file is distributed under the same license as the xfce4-panel package.
 # Daichi Kawahata , 2005-2007.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-05 05:08+\n"
-"PO-Revision-Date: 2010-11-03 23:18+0900\n"
+"POT-Creation-Date: 2010-11-05 23:40+0900\n"
+"PO-Revision-Date: 2010-11-05 23:33+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
 
 #: ../panel-desktop-handler.desktop.in.h:1
 msgid "Create Launcher on Xfce Panel"
@@ -39,8 +39,12 @@ msgid "_Read Online"
 msgstr "オンラインで読む(_R)"
 
 #: ../common/panel-utils.c:156
-msgid "You can read the user manual online. This manual may however not 
exactly match your panel version."
-msgstr "ユーザマニュアルをオンラインで閲覧できます。ただし、あなたがお使いのパネルのバージョンとは一致しないかもしれません。"
+msgid ""
+"You can read the user manual online. This manual may however not exactly "
+"match your panel version."
+msgstr ""
+"ユーザマニュアルをオンラインで閲覧できます。ただし、あなたがお使いのパネルの"
+"バージョンとは一致しないかもしれません。"
 
 #: ../common/panel-utils.c:158
 msgid "The Xfce Panel user manual is not installed on your computer"
@@ -192,8 +196,13 @@ msgid "Failed to send D-Bus message"
 msgstr "D-Bus メッセージの送信に失敗しました"
 
 #: ../panel/main.c:313
-msgid "Do you want to start the Xfce panel? If you do, make sure you save the 
session on logout, so the panel is automatically started the next time you 
login."
-msgstr "Xfce パネルを起動しますか? 起動した場合、ログアウト時にセッションを保存すれば次回ログイン時にパネルは自動起動されます。"
+msgid ""
+"Do you want to start the Xfce panel? If you do, make sure you save the "
+"session on logout, so the panel is automatically started the next time you "
+"login."
+msgstr ""
+"Xfce パネルを起動しますか? 起動した場合、ログアウト時にセッションを保存すれば"
+"次回ログイン時にパネルは自動起動されます。"
 
 #: ../panel/main.c:316 ../panel/main.c:330
 #, c-format
@@ -205,8 +214,11 @@ msgid "Failed to launch the migration application"
 msgstr "移行アプリケーションの起動に失敗しました"
 
 #: ../panel/panel-application.c:1429 ../plugins/actions/actions.c:413
-msgid "If you have started Xfce without session manager, this will close the X 
server."
-msgstr "セッションマネージャなしで Xfce を起動した場合、X サーバはクローズされます。"
+msgid ""
+"If you have started Xfce without session manager, this will close the X "
+"server."
+msgstr ""
+"セッションマネージャなしで Xfce を起動した場合、X サーバはクローズされます。"
 
 #: ../panel/panel-application.c:1430 ../plugins/actions/actions.c:414
 msgid "Are you sure you want to quit the panel?"
@@ -218,13 +230,19 @@ msgid "Failed to execute command \"%s\""
 msgstr "コマンド \"%s\" の実行に失敗しました"
 
 #: ../panel/panel-dbus-client.c:209
-msgid "Invalid plugin event syntax specified. Use 
PLUGIN-NAME:NAME[:TYPE:VALUE]."
-msgstr "不正なプラグインイベント構文が指定されています。PLUGIN-NAME:NAME[:TYPE:VALUE] と指定してください。"
+msgid ""
+"Invalid plugin event syntax specified. Use PLUGIN-NAME:NAME[:TYPE:VALUE]."
+msgstr ""
+"不正なプラグインイベント構文が指定されています。PLUGIN-NAME:NAME[:TYPE:"
+"VALUE] と指定してください。"
 
 #: ../panel/panel-dbus-client.c:242
 #, c-format
-msgid "Invalid hint type \"%s\". Valid types are bool, double, int, string and 
uint."
-msgstr "\"%s\" は不正なヒントタイプです。正しいタイプは bool、double、int、string および uint です。"
+msgid ""
+"Invalid hint type \"%s\". Valid types are bool, double, int, string and uint."
+msgstr ""
+"\"%s\" は不正なヒントタイプです。正しいタイプは bool、double、int、string お"
+"よび uint です。"
 
 #: ../panel/panel-dialogs.c:79
 msgid "The panel of the Xfce Desktop Environment"
@@ -250,8 +268,12 @@ msgid "Panel %d"
 msgstr "パネル %d"
 
 #: ../panel/panel-dialogs.c:186
-msgid "Because the panel is running in kiosk mode, you are not allowed to make 
changes to the panel configuration as a regular user"
-msgstr "パネルはキオスクモードで動作しているため、一般ユーザがパネルの設定を変更することは許可されません。"
+msgid ""
+"Because the panel is running in kiosk mode, you are not allowed to make "
+"changes to the panel configuration as a regular user"
+msgstr ""
+"パネルはキオスクモードで動作しているため、一般ユーザがパネルの設定を変更する"
+"ことは許可されません。"
 
 #: ../panel/panel-dialogs.c:188
 msgid "Modifying the panel is not allowed"
@@ -277,12 +299,19 @@ msgstr "検索フレーズを入力してください"
 #: ../panel/panel-plugin-external.c:418
 #, c-format
 msgid "Plugin \"%s\" unexpectedly l

[Xfce4-commits] Fix bug 3224

2010-11-05 Thread Florian Rivoal
Updating branch refs/heads/master
 to 9ba7d355c1aef7e199bcb97f1d13c0c71c636497 (commit)
   from 5fae033db0a1a76c2c40ddd5f8017cc5176a01d3 (commit)

commit 9ba7d355c1aef7e199bcb97f1d13c0c71c636497
Author: Florian Rivoal 
Date:   Fri Nov 5 23:51:14 2010 +0900

Fix bug 3224

Hide the time label on startup if the settings say so.

 panel-plugin/time-out.c |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/panel-plugin/time-out.c b/panel-plugin/time-out.c
index fbc6269..49ab97d 100644
--- a/panel-plugin/time-out.c
+++ b/panel-plugin/time-out.c
@@ -238,6 +238,10 @@ time_out_construct (XfcePanelPlugin *plugin)
   /* Load the settings */
   time_out_load_settings (time_out);
 
+  /* Hide the time label if settings says so */
+  if (!time_out->display_time) 
+gtk_widget_hide (time_out->time_label);
+
   /* Add the event box to the panel */
   gtk_container_add (GTK_CONTAINER (plugin), time_out->ebox);
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 53a350d9380b89e062c7f122c16a493e972341ce (commit)
   from 603c6752044a7d1320db0581b983840f1bfd0180 (commit)

commit 53a350d9380b89e062c7f122c16a493e972341ce
Author: Masato Hashimoto 
Date:   Fri Nov 5 15:53:24 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

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

diff --git a/po/ja.po b/po/ja.po
index ac865a6..498e44e 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4menu 0.1.0svn\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-03 19:14+0100\n"
-"PO-Revision-Date: 2009-10-11 16:38+0900\n"
+"POT-Creation-Date: 2010-11-05 23:25+0900\n"
+"PO-Revision-Date: 2010-11-05 23:22+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
@@ -19,112 +19,112 @@ msgstr ""
 
 #: ../data/xfce/xfce-accessories.directory.in.h:1
 msgid "Accessories"
-msgstr ""
+msgstr "アクセサリ"
 
 #: ../data/xfce/xfce-accessories.directory.in.h:2
 msgid "Common desktop tools and applications"
-msgstr ""
+msgstr "一般的なデスクトップツールやアプリケーションです"
 
 #: ../data/xfce/xfce-development.directory.in.h:1
 msgid "Development"
-msgstr ""
+msgstr "開発"
 
 #: ../data/xfce/xfce-development.directory.in.h:2
 msgid "Software development tools"
-msgstr ""
+msgstr "ソフトウェア開発ツールです"
 
 #: ../data/xfce/xfce-education.directory.in.h:1
 msgid "Education"
-msgstr ""
+msgstr "教育"
 
 #: ../data/xfce/xfce-education.directory.in.h:2
 msgid "Educational software"
-msgstr ""
+msgstr "教育用ソフトウェアです"
 
 #: ../data/xfce/xfce-games.directory.in.h:1
 msgid "Games"
-msgstr ""
+msgstr "ゲーム"
 
 #: ../data/xfce/xfce-games.directory.in.h:2
 msgid "Games, puzzles, and other fun software"
-msgstr ""
+msgstr "ゲーム、パズル、その他楽しいソフトウェアです"
 
 #: ../data/xfce/xfce-graphics.directory.in.h:1
 msgid "Graphics"
-msgstr ""
+msgstr "グラフィックス"
 
 #: ../data/xfce/xfce-graphics.directory.in.h:2
 msgid "Graphics creation and manipulation applications"
-msgstr ""
+msgstr "グラフィック作成および操作アプリケーションです"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:1
 msgid "Audio and video players and editors"
-msgstr ""
+msgstr "オーディオおよびビデオのプレイヤーおよびエディタです"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:2
 msgid "Multimedia"
-msgstr ""
+msgstr "マルチメディア"
 
 #: ../data/xfce/xfce-network.directory.in.h:1
 msgid "Network"
-msgstr ""
+msgstr "ネットワーク"
 
 #: ../data/xfce/xfce-network.directory.in.h:2
 msgid "Network applications and utilities"
-msgstr ""
+msgstr "ネットワークアプリケーションおよびユーティリティです"
 
 #: ../data/xfce/xfce-office.directory.in.h:1
 msgid "Office"
-msgstr ""
+msgstr "オフィス"
 
 #: ../data/xfce/xfce-office.directory.in.h:2
 msgid "Office and productivity applications"
-msgstr ""
+msgstr "オフィスおよび生産性アプリケーションです"
 
 #: ../data/xfce/xfce-other.directory.in.h:1
 msgid "Applications that don't fit into other categories"
-msgstr ""
+msgstr "他のカテゴリに含まれないアプリケーションです"
 
 #: ../data/xfce/xfce-other.directory.in.h:2
 msgid "Other"
-msgstr ""
+msgstr "その他"
 
 #: ../data/xfce/xfce-science.directory.in.h:1
 msgid "Science"
-msgstr ""
+msgstr "科学"
 
 #: ../data/xfce/xfce-science.directory.in.h:2
 msgid "Scientific software"
-msgstr ""
+msgstr "科学ソフトウェアです"
 
 #: ../data/xfce/xfce-screensavers.directory.in.h:1
 msgid "Screensaver applets"
-msgstr ""
+msgstr "スクリーンセーバアプレット"
 
 #: ../data/xfce/xfce-screensavers.directory.in.h:2
 msgid "Screensavers"
-msgstr ""
+msgstr "スクリーンセーバ"
 
 #: ../data/xfce/xfce-settings.directory.in.h:1
 msgid "Desktop and system settings applications"
-msgstr ""
+msgstr "デスクトップおよびシステム設定アプリケーションです"
 
 #: ../data/xfce/xfce-settings.directory.in.h:2
 msgid "Settings"
-msgstr ""
+msgstr "設定"
 
 #: ../data/xfce/xfce-system.directory.in.h:1
 msgid "System"
-msgstr ""
+msgstr "システム"
 
 #: ../data/xfce/xfce-system.directory.in.h:2
 msgid "System tools and utilities"
-msgstr ""
+msgstr "システムツールおよびユーティリティです"
 
 #: ../garcon/garcon-menu.c:705
 #, c-format
 msgid "No suitable application menu file found"
-msgstr ""
+msgstr "適切なアプリケーションメニューファイルが見つかりません"
 
 #: ../garcon/garcon-menu-parser.c:278
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fix bar colors for some theme engines

2010-11-05 Thread Florian Rivoal
Updating branch refs/heads/master
 to 5454e32347d681e4f2398b9f10d87542dd81ed74 (commit)
   from 0f806d5a5a32f6f9b7e1b3748e561f505ffa0f64 (commit)

commit 5454e32347d681e4f2398b9f10d87542dd81ed74
Author: Florian Rivoal 
Date:   Fri Oct 15 20:27:09 2010 +0900

Fix bar colors for some theme engines

Apply the patch proposed in bug 1889 by Brian J. Tarricone.

 panel-plugin/netload.c |   53 ---
 1 files changed, 18 insertions(+), 35 deletions(-)

diff --git a/panel-plugin/netload.c b/panel-plugin/netload.c
index 7e8ae10..c1fa4d2 100644
--- a/panel-plugin/netload.c
+++ b/panel-plugin/netload.c
@@ -257,7 +257,6 @@ static void run_update (t_global_monitor *global)
 static void monitor_set_orientation (XfcePanelPlugin *plugin, GtkOrientation 
orientation, 
  t_global_monitor *global)
 {
-GtkRcStyle *rc;
 gint i;
 
 if (global->timeout_id)
@@ -316,19 +315,16 @@ static void monitor_set_orientation (XfcePanelPlugin 
*plugin, GtkOrientation ori
 
 for (i = 0; i < SUM; i++)
 {
-rc = 
gtk_widget_get_modifier_style(GTK_WIDGET(global->monitor->status[i]));
-if (!rc) 
-{
-rc = gtk_rc_style_new();
-}
-else
-{
-rc->color_flags[GTK_STATE_PRELIGHT] |= GTK_RC_BG;
-rc->bg[GTK_STATE_PRELIGHT] =
-global->monitor->options.color[i];
-}
+gtk_widget_modify_bg(GTK_WIDGET(global->monitor->status[i]),
+ GTK_STATE_PRELIGHT,
+ &global->monitor->options.color[i]);
+gtk_widget_modify_bg(GTK_WIDGET(global->monitor->status[i]),
+ GTK_STATE_SELECTED,
+ &global->monitor->options.color[i]);
+gtk_widget_modify_base(GTK_WIDGET(global->monitor->status[i]),
+   GTK_STATE_SELECTED,
+   &global->monitor->options.color[i]);
 
-gtk_widget_modify_style(GTK_WIDGET(global->monitor->status[i]), rc);
 gtk_widget_show(GTK_WIDGET(global->monitor->status[i]));
 
 gtk_box_pack_start(GTK_BOX(global->monitor->box),
@@ -413,7 +409,6 @@ static t_global_monitor * monitor_new(XfcePanelPlugin 
*plugin)
 /* 
--
 */
 static void setup_monitor(t_global_monitor *global, gboolean supress_warnings)
 {
-GtkRcStyle *rc;
 gint i;
 
 gtk_widget_hide(GTK_WIDGET(global->monitor->box));
@@ -423,27 +418,15 @@ static void setup_monitor(t_global_monitor *global, 
gboolean supress_warnings)
 
 for (i = 0; i < SUM; i++)
 {
-gtk_widget_hide(GTK_WIDGET(global->monitor->status[i]));
-rc = 
gtk_widget_get_modifier_style(GTK_WIDGET(global->monitor->status[i]));
-
-if (!rc) {
-rc = gtk_rc_style_new();
-} else {
-/* to free the style safely in any case */
-gtk_rc_style_ref(rc);
-}
-
-if (rc) {
-rc->color_flags[GTK_STATE_PRELIGHT] |= GTK_RC_BG;
-rc->color_flags[GTK_STATE_SELECTED] |= GTK_RC_BASE;
-rc->bg[GTK_STATE_PRELIGHT] = global->monitor->options.color[i];
-rc->base[GTK_STATE_SELECTED] = global->monitor->options.color[i];
-
-gtk_widget_modify_style(GTK_WIDGET(global->monitor->status[i]), 
rc);
-gtk_rc_style_unref(rc);
-}
-
-gtk_widget_show(GTK_WIDGET(global->monitor->status[i]));
+gtk_widget_modify_bg(GTK_WIDGET(global->monitor->status[i]),
+ GTK_STATE_PRELIGHT,
+ &global->monitor->options.color[i]);
+gtk_widget_modify_bg(GTK_WIDGET(global->monitor->status[i]),
+ GTK_STATE_SELECTED,
+ &global->monitor->options.color[i]);
+gtk_widget_modify_base(GTK_WIDGET(global->monitor->status[i]),
+   GTK_STATE_SELECTED,
+   &global->monitor->options.color[i]);
 
 /* Maximum */
 if( global->monitor->options.auto_max )
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fix compatibility with Xfce 4.7+

2010-11-05 Thread Florian Rivoal
Updating branch refs/heads/master
 to 58fd735f17d03193d3f17d8e02f46bf8e908a3bc (commit)
   from 3ac60757c291cf6bc6eee617f091d2be51c63ac5 (commit)

commit 58fd735f17d03193d3f17d8e02f46bf8e908a3bc
Author: Florian Rivoal 
Date:   Fri Oct 29 09:33:05 2010 +0900

Fix compatibility with Xfce 4.7+

Add exo-0.5 detection and explicitly require libxfcegui4. Fixes bug
6616.

 configure.in.in  |4 +++-
 panel-plugin/Makefile.am |6 --
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 95234fc..0b1efab 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -52,9 +52,11 @@ XDT_I18N([...@linguas@])
 dnl ***
 dnl *** Check for required packages ***
 dnl ***
-XDT_CHECK_PACKAGE([LIBEXO], [exo-0.3], [0.3.1.3])
+XDT_CHECK_PACKAGE([LIBEXO], [exo-0.3], [0.3.1.3], [],
+  [XDT_CHECK_PACKAGE([LIBEXO], [exo-1], [0.5.0])])
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.4.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.4.0])
+XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4.0])
 XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.6.4])
 XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.6.4])
 XDT_CHECK_PACKAGE([LIBPCRE], [libpcre], [5.0])
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 08694d5..ba6464e 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -21,14 +21,16 @@ xfce4_verve_plugin_CFLAGS = 
\
@LIBEXO_CFLAGS@ \
@LIBXFCE4PANEL_CFLAGS@  \
@LIBXFCE4UTIL_CFLAGS@   \
+   @LIBXFCEGUI4_CFLAGS@\
@LIBPCRE_CFLAGS@\
@GLIB_CFLAGS@   \
@GTHREAD_CFLAGS@
 
-xfce4_verve_plugin_LDFLAGS =   \
+xfce4_verve_plugin_LDADD = \
@LIBEXO_LIBS@   \
@LIBXFCE4PANEL_LIBS@\
@LIBXFCE4UTIL_LIBS@ \
+   @LIBXFCEGUI4_LIBS@  \
@LIBPCRE_LIBS@  \
@GLIB_LIBS@ \
@GTHREAD_LIBS@
@@ -43,7 +45,7 @@ xfce4_verve_plugin_CFLAGS +=  
\
-DDBUS_API_SUBJECT_TO_CHANGE\
$(DBUS_CFLAGS)
 
-xfce4_verve_plugin_LDFLAGS +=  \
+xfce4_verve_plugin_LDADD +=\
$(DBUS_LIBS)
 
 verve-dbus-service-infos.h: Makefile $(srcdir)/verve-dbus-service-infos.xml 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 8b7bfc743add0ec73721a725107a2b547f1a3307 (commit)
   from 5c2d705b585283429a6d57e5c32f435bdcfeef69 (commit)

commit 8b7bfc743add0ec73721a725107a2b547f1a3307
Author: Dmitry Nikitin 
Date:   Fri Nov 5 15:15:01 2010 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index 5a10e91..94dd1ab 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -769,13 +769,13 @@ msgstr "Вчора в %X"
 #: ../src/xfdesktop-file-utils.c:146
 #, c-format
 msgid "%A at %X"
-msgstr ""
+msgstr "%A о %X"
 
 #. Any other date
 #: ../src/xfdesktop-file-utils.c:149
 #, c-format
 msgid "%x at %X"
-msgstr ""
+msgstr "%x о %X"
 
 #. the file_time is invalid
 #: ../src/xfdesktop-file-utils.c:159
@@ -854,44 +854,41 @@ msgstr "Помилка передачі"
 
 #: ../src/xfdesktop-file-utils.c:1221 ../src/xfdesktop-file-utils.c:1235
 #: ../src/xfdesktop-file-utils.c:1297 ../src/xfdesktop-file-utils.c:1313
-#, fuzzy
 msgid "The file transfer could not be performed"
-msgstr "Пов'язану з цим файлом програму неможливо знайти чи виконати."
+msgstr "Передача файлу не може бути виконана"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:97
-#, fuzzy
 msgid "Unmounting device"
-msgstr "Помилка відключення"
+msgstr "Відключення пристрою"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:100
 #, c-format
 msgid "The device \"%s\" is being unmounted by the system. Please do not 
remove the media or disconnect the drive"
-msgstr ""
+msgstr "Пристрій \"%s\" був демонтований системою. Будь ласка не витягуйте 
носій чи не від'єднуйте пристрій"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:107 ../src/xfdesktop-notify.c:220
 msgid "Writing data to device"
-msgstr ""
+msgstr "Запис даних на пристрій"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:110 ../src/xfdesktop-notify.c:223
 #, c-format
 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\" перед тим як він 
буде витягнутий. Будь ласка не витягуйте носій чи не від'єднуйте пристрій"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:211
-#, fuzzy
 msgid "Ejecting device"
-msgstr "Помилка відключення"
+msgstr "Витягування пристрою"
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:214
 #, c-format
 msgid "The device \"%s\" is being ejected. This may take some time"
-msgstr ""
+msgstr "Пристрій \"%s\" в даний час витягується. Це може зайняти деякий час"
 
 #: ../src/xfdesktop-regular-file-icon.c:468
 #, c-format
@@ -900,25 +897,27 @@ msgid ""
 "Size: %s\n"
 "Last modified: %s"
 msgstr ""
+"Тип: %s\n"
+"Розмір: %s\n"
+"Остання зміна: %s"
 
 #: ../src/xfdesktop-special-file-icon.c:249
 #: ../src/xfdesktop-special-file-icon.c:411
-#, fuzzy
 msgid "File System"
 msgstr "Файлова система"
 
 #: ../src/xfdesktop-special-file-icon.c:396
 msgid "Trash is empty"
-msgstr ""
+msgstr "Смітник порожній"
 
 #: ../src/xfdesktop-special-file-icon.c:399
 msgid "Trash contains one item"
-msgstr ""
+msgstr "Смітник має один елемент"
 
 #: ../src/xfdesktop-special-file-icon.c:400
 #, c-format
 msgid "Trash contains %d items"
-msgstr ""
+msgstr "Смітник має %d елементів"
 
 #: ../src/xfdesktop-special-file-icon.c:428
 #, c-format
@@ -927,6 +926,9 @@ msgid ""
 "Size: %s\n"
 "Last modified: %s"
 msgstr ""
+"%s\n"
+"Розмір: %s\n"
+"Остання зміна: %s"
 
 #: ../src/xfdesktop-special-file-icon.c:449
 msgid "Unable to contact the Xfce Trash service."
@@ -941,39 +943,37 @@ msgid "_Empty Trash"
 msgstr "О_чистити смітник"
 
 #: ../src/xfdesktop-volume-icon.c:413
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Removable Volume\n"
 "Mounted in \"%s\"\n"
 "%s left (%s total)"
 msgstr ""
-"Вигляд: З'ємний розділ\n"
-"Точка монтування: %s\n"
-"Вільне місце: %s"
+"З'ємний розділ\n"
+"Змонтований в \"%s\"\n"
+"%s залишилось (%s всього)"
 
 #: ../src/xfdesktop-volume-icon.c:420
-#, fuzzy
 msgid ""
 "Removable Volume\n"
 "Not mounted yet"
 msgstr ""
-"Вигляд: З'ємний розділ\n"
-"Точка монтування: %s\n"
-"Вільне місце: %s"
+"З'ємний розділ\n"
+"Зараз не змонтовано"
 
 #: ../src/xfdesktop-volume-icon.c:446 ../src/xfdesktop-volume-icon.c:488
-#, fuzzy, c-format
+#, c-format
 msgid "Failed to eject \"%s\""
-msgstr "Не вдається витягнути \"%s\":"
+msgstr "Не вдається витягнути \"%s\""
 
 #: ../src/xfdesktop-volume-icon.c:451 ../src/xfdesktop-volume-icon.c:493
 msgid "Eject 

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 5c2d705b585283429a6d57e5c32f435bdcfeef69 (commit)
   from d9f8cb0a703ad3c0025591895527dba1dff75176 (commit)

commit 5c2d705b585283429a6d57e5c32f435bdcfeef69
Author: Dmitry Nikitin 
Date:   Fri Nov 5 14:56:58 2010 +0100

l10n: Updated Ukrainian (uk) translation to 91%

New status: 193 messages complete with 8 fuzzies and 11 untranslated.

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

 po/uk.po |   63 +
 1 files changed, 22 insertions(+), 41 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 4e0d888..5a10e91 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -280,7 +280,7 @@ msgstr "Ст_иль:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:28
 #: ../settings/xfdesktop-settings-ui.glade.h:34
 msgid "Stretched"
-msgstr ""
+msgstr "Розтягнутий"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:29
 #: ../settings/xfdesktop-settings-ui.glade.h:35
@@ -327,7 +327,6 @@ msgid "Window List Menu"
 msgstr "Меню списку вікон"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:5
-#, fuzzy
 msgid "Alt"
 msgstr "Alt"
 
@@ -336,7 +335,6 @@ msgid "B_utton:"
 msgstr "_Кнопка"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:9
-#, fuzzy
 msgid "Control"
 msgstr "Control"
 
@@ -759,13 +757,13 @@ msgstr "Неможливо завантажити теку стільниці"
 #: ../src/xfdesktop-file-utils.c:137
 #, c-format
 msgid "Today at %X"
-msgstr ""
+msgstr "Сьогодні о %X"
 
 #. TRANSLATORS: file was modified less than two days ago
 #: ../src/xfdesktop-file-utils.c:141
 #, c-format
 msgid "Yesterday at %X"
-msgstr ""
+msgstr "Вчора в %X"
 
 #. Days from last week
 #: ../src/xfdesktop-file-utils.c:146
@@ -781,95 +779,78 @@ msgstr ""
 
 #. the file_time is invalid
 #: ../src/xfdesktop-file-utils.c:159
-#, fuzzy
 msgid "Unknown"
-msgstr "(невідомо)"
+msgstr "Невідомий"
 
 #: ../src/xfdesktop-file-utils.c:632 ../src/xfdesktop-file-utils.c:647
-#, fuzzy
 msgid "The folder could not be opened"
-msgstr "Пов'язану з цим файлом програму неможливо знайти чи виконати."
+msgstr "Теку неможливо відкрити"
 
 #: ../src/xfdesktop-file-utils.c:681 ../src/xfdesktop-file-utils.c:696
-#, fuzzy
 msgid "Rename Error"
-msgstr "Помилка при виконанні"
+msgstr "Помилка при перейменуванні"
 
 #: ../src/xfdesktop-file-utils.c:682 ../src/xfdesktop-file-utils.c:697
-#, fuzzy
 msgid "The file could not be renamed"
-msgstr "Пов'язану з цим файлом програму неможливо знайти чи виконати."
+msgstr "Файл не може бути перейменований"
 
 #: ../src/xfdesktop-file-utils.c:740 ../src/xfdesktop-file-utils.c:755
-#, fuzzy
 msgid "Delete Error"
-msgstr "Помилка при створенні"
+msgstr "Помилка при видаленні"
 
 #: ../src/xfdesktop-file-utils.c:741 ../src/xfdesktop-file-utils.c:756
-#, fuzzy
 msgid "The selected files could not be deleted"
-msgstr "Пов'язану з цим файлом програму неможливо знайти чи виконати."
+msgstr "Вибраний файл не може бути видалений"
 
 #: ../src/xfdesktop-file-utils.c:800 ../src/xfdesktop-file-utils.c:815
-#, fuzzy
 msgid "The selected files could not be moved to the trash"
-msgstr "Пов'язану з цим файлом програму неможливо знайти чи виконати."
+msgstr "Вибраний файл не може бути переміщений в смітник"
 
 #: ../src/xfdesktop-file-utils.c:816
-#, fuzzy
 msgid "This feature requires a trash service to be present (such as the one 
supplied by Thunar)."
-msgstr "Ця функція вимагає наявності файлового менеджера (наприклад, 
підтримується Thunar)."
+msgstr "Ця функція вимагає наявності сервісу файлового менеджера (один з таких 
підтримується Thunar)."
 
 #: ../src/xfdesktop-file-utils.c:852 ../src/xfdesktop-file-utils.c:867
-#, fuzzy
 msgid "Create File Error"
-msgstr "Помилка при створенні"
+msgstr "Помилка при створенні файлу"
 
 #: ../src/xfdesktop-file-utils.c:853 ../src/xfdesktop-file-utils.c:868
-#, fuzzy
 msgid "Could not create a new file"
-msgstr "Неможливо створити список фонових зображень \"%s\""
+msgstr "Неможливо створити новий файл"
 
 #: ../src/xfdesktop-file-utils.c:908 ../src/xfdesktop-file-utils.c:923
-#, fuzzy
 msgid "Create Document Error"
-msgstr "Помилка при створенні"
+msgstr "Помилка при створенні документу"
 
 #: ../src/xfdesktop-file-utils.c:909 ../src/xfdesktop-file-utils.c:924
-#, fuzzy
 msgid "Could not create a new document from the template"
-msgstr "Створити документ з шаблону \"%s\""
+msgstr "Неможливо створити документ з шаблону"
 
 #: ../src/xfdesktop-file-utils.c:958 ../src/xfdesktop-file-utils.c:973
-#, fuzzy
 msgid "File Properties Error"
-msgstr "Помилка у властивостях"
+msgstr "Помилка у властивостях файлу"
 
 #: ../src/xfdesktop-file-utils.c:959 ../src/xfdesktop-file-utils.c:974
-#, fuzzy
 msgid "The file properties dialog could not be opened"
-msgstr "Пов'язану з цим файлом програму неможливо знайти чи виконати."
+msgstr "Неможливо відкрити діалог властивостей файлу"
 
 #: ../src/xfdesktop-file-utils.c:1009 ../src/xfdesktop-file-utils.c:1024
-#, fuzzy
 msgid "The file could not be opened"
-msg

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 2ffbc2a91859df0d6f2512b0da2291dea107a809 (commit)
   from c3db141b2b263b4e73a80a43b3044a379db83307 (commit)

commit 2ffbc2a91859df0d6f2512b0da2291dea107a809
Author: Masato Hashimoto 
Date:   Fri Nov 5 14:49:46 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

 po/ja.po |  299 +-
 1 files changed, 199 insertions(+), 100 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 1e1d057..1cd698f 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce 4-settings 4.5.90\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-02 15:30+0900\n"
-"PO-Revision-Date: 2010-01-20 20:21+0900\n"
+"POT-Creation-Date: 2010-11-05 22:48+0900\n"
+"PO-Revision-Date: 2010-11-05 22:46+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
@@ -196,50 +196,52 @@ msgstr "ピクセル/秒"
 
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:87
+#: ../dialogs/display-settings/main.c:103
 #: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
 msgid "Settings manager socket"
 msgstr "設定マネージャソケット"
 
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:87
+#: ../dialogs/display-settings/main.c:103
 #: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
 msgid "SOCKET ID"
 msgstr "SOCKET ID"
 
 #: ../dialogs/accessibility-settings/main.c:45
 #: ../dialogs/appearance-settings/main.c:88
-#: ../dialogs/display-settings/main.c:82
+#: ../dialogs/display-settings/main.c:104
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mouse-settings/main.c:101
-#: ../xfce4-settings-editor/main.c:43 ../xfce4-settings-helper/main.c:78
+#: ../xfce4-settings-editor/main.c:43 ../xfce4-settings-helper/main.c:74
 #: ../xfce4-settings-manager/main.c:40 ../xfsettingsd/main.c:52
 msgid "Version information"
 msgstr "バージョン情報を表示する"
 
 #: ../dialogs/accessibility-settings/main.c:143
-#: ../dialogs/appearance-settings/main.c:773
-#: ../dialogs/display-settings/main.c:642
+#: ../dialogs/appearance-settings/main.c:827
+#: ../dialogs/display-settings/main.c:1046
 #: ../dialogs/keyboard-settings/main.c:64
-#: ../dialogs/mouse-settings/main.c:1186 ../xfce4-settings-editor/main.c:63
-#: ../xfce4-settings-helper/main.c:188 ../xfce4-settings-manager/main.c:58
+#: ../dialogs/mouse-settings/main.c:1188 ../xfce4-settings-editor/main.c:63
+#: ../xfce4-settings-helper/main.c:160 ../xfce4-settings-manager/main.c:58
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "'%s --help' と入力すると使用方法が表示されます。"
 
 #: ../dialogs/accessibility-settings/main.c:162
-#: ../dialogs/appearance-settings/main.c:792
-#: ../dialogs/display-settings/main.c:661
+#: ../dialogs/appearance-settings/main.c:846
+#: ../dialogs/display-settings/main.c:1065
 #: ../dialogs/keyboard-settings/main.c:80
-#: ../dialogs/mouse-settings/main.c:1205 ../xfce4-settings-editor/main.c:82
-#: ../xfce4-settings-helper/main.c:206 ../xfce4-settings-manager/main.c:71
+#: ../dialogs/mouse-settings/main.c:1207 ../xfce4-settings-editor/main.c:82
+#: ../xfce4-settings-helper/main.c:176 ../xfce4-settings-manager/main.c:71
 msgid "The Xfce development team. All rights reserved."
 msgstr "The Xfce development team. All rights reserved."
 
 #: ../dialogs/accessibility-settings/main.c:163
-#: ../dialogs/appearance-settings/main.c:793
-#: ../dialogs/display-settings/main.c:662
+#: ../dialogs/appearance-settings/main.c:847
+#: ../dialogs/display-settings/main.c:1066
 #: ../dialogs/keyboard-settings/main.c:81
-#: ../dialogs/mouse-settings/main.c:1206 ../xfce4-settings-editor/main.c:83
-#: ../xfce4-settings-helper/main.c:207 ../xfce4-settings-manager/main.c:72
+#: ../dialogs/mouse-settings/main.c:1208 ../xfce4-settings-editor/main.c:83
+#: ../xfce4-settings-helper/main.c:177 ../xfce4-settings-manager/main.c:72
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "バグの報告は <%s> までお願いします。"
@@ -261,6 +263,7 @@ msgid "Appearance"
 msgstr "外観"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:3
+#: ../dialogs/display-settings/main.c:83
 msgid "Both"
 msgstr "アイコンと文字"
 
@@ -353,7 +356,8 @@ msgid "Menus and Buttons"
 msgstr "メニューとボタン"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:22
-#: ../dialogs/appearance-settings/main.c:670
+#: ../dialogs/appearance-settings/main.c:724
+#: ../dialogs/display-settings/main.c:80
 msgid "None"
 msgstr "なし"
 
@@ -446,40 +450,62 @@ msgstr "設定(_S)"
 msgid "_Toolbar Style"
 msgstr "ツールバーのスタイル(_T)"
 
-#: ../dialogs/appearance-settings/main.c:674
+#: ../dialogs/appearance-settings/main.c:728
 msgid "RGB"
 msgstr "RGB"
 
-#: ../dialogs/appearance-settings/main.c:678
+#: ../dialogs/appearance-settings/main.c:732
 msgid "BGR"
 ms

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to d9f8cb0a703ad3c0025591895527dba1dff75176 (commit)
   from ab26b15935b8aaecdabd551f4d2f6570b75c7f94 (commit)

commit d9f8cb0a703ad3c0025591895527dba1dff75176
Author: Dmitry Nikitin 
Date:   Fri Nov 5 14:47:33 2010 +0100

l10n: Updated Ukrainian (uk) translation to 80%

New status: 170 messages complete with 28 fuzzies and 14 untranslated.

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

 po/uk.po |  184 --
 1 files changed, 60 insertions(+), 124 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 7046f4a..4e0d888 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,21 +1,21 @@
 # Ukrainian translation of xfdesktop.
 # Copyright (C) 2003-2006 The Xfce development team.
 # This file is distributed under the same license as the xfdesktop package.
-#
+# 
 # Maxim Dziumanenko , 2003-2006.
 # Dmitry Nikitin , 2008.
 msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 20:14+0100\n"
+"POT-Creation-Date: 2010-11-05 11:09+\n"
 "PO-Revision-Date: 2008-11-26 19:20+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"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
@@ -65,11 +65,8 @@ msgstr "Створити/завантажити список фонових зо
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
-msgstr ""
-"Файл \"%s\" не є правильним файлом списку фонових зображень.  Бажаєте "
-"перезаписати його?"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
+msgstr "Файл \"%s\" не є правильним файлом списку фонових зображень.  Бажаєте 
перезаписати його?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
@@ -190,7 +187,7 @@ msgstr "Додати зображення до списку"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr ""
+msgstr "Автоматично"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a random image from a list file"
@@ -203,7 +200,7 @@ msgstr "_Яскравість:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
 msgid "Centered"
-msgstr ""
+msgstr "Центрований"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
 msgid "Create a new list, or load an existing one"
@@ -216,7 +213,7 @@ msgstr "Не відображати зображення як інші"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 #: ../settings/xfdesktop-settings-ui.glade.h:12
 msgid "Horizontal gradient"
-msgstr ""
+msgstr "Горизонтальний градієнт"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
 msgid "Image _list"
@@ -241,7 +238,7 @@ msgstr "Насич_еність:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 #: ../settings/xfdesktop-settings-ui.glade.h:23
 msgid "Scaled"
-msgstr ""
+msgstr "Розтягнутий"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
@@ -258,17 +255,15 @@ msgstr "Виберіть одне зображення яке буде фоно
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 #: ../settings/xfdesktop-settings-ui.glade.h:32
 msgid "Solid color"
-msgstr ""
+msgstr "Суцільний колір"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
 msgstr "Призначити \"правий\" чи \"нижній\" колір градієнту"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
-msgstr ""
-"Призначити суцільний колір, або \"лівий\" чи \"верхній\" колір градієнту"
+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient"
+msgstr "Призначити суцільний колір, або \"лівий\" чи \"верхній\" колір 
градієнту"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
 msgid "Specify how the image will be resized to fit the screen"
@@ -276,8 +271,7 @@ msgstr "Призначити як зображення буде змінюват
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:26
 msgid "Specify the style of the color drawn behind the backdrop image"
-msgstr ""
-"Призначити стиль кольору, що буде відображатись під фоновим зображенням"
+msgstr "Призначити стиль кольору, що буде відображатись під фоновим 
зображенням"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:27
 msgid "St_yle:"
@@ -291,22 +285,22 @@ msgstr ""
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:29
 #: ../settings/xfdesktop-settings-ui.glade.h:35
 msgid "Tiled"
-msgstr ""
+msgstr "Плиткою"
 
 #: ../settings

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to ab26b15935b8aaecdabd551f4d2f6570b75c7f94 (commit)
   from c851477a8f665de1b1680c229966936d12f827a8 (commit)

commit ab26b15935b8aaecdabd551f4d2f6570b75c7f94
Author: Sergio Marques 
Date:   Fri Nov 5 14:47:04 2010 +0100

l10n: Updated Portuguese (pt) translation to 100%

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

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

 po/pt.po |  331 +-
 1 files changed, 133 insertions(+), 198 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 6115ea5..7d614d4 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,26 +3,26 @@
 # This file is distributed under the same license as the xfdesktop package.
 # Nuno Donato , 2004.
 # Nuno Miguel , 2007, 2008, 2009.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.6.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 20:14+0100\n"
+"POT-Creation-Date: 2010-11-05 11:09+\n"
 "PO-Revision-Date: 2010-01-04 11:47-\n"
 "Last-Translator: Sergio 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"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
 msgid "Backdrop list file is not valid"
-msgstr "Ficheiro de lista de fundos inválido"
+msgstr "O ficheiro de lista de fundos é inválido"
 
 #. no need to escape markup; it's already done for us
 #: ../settings/main.c:162
@@ -37,7 +37,7 @@ msgstr ""
 #: ../settings/main.c:272 ../src/xfdesktop-special-file-icon.c:247
 #: ../src/xfdesktop-special-file-icon.c:413
 msgid "Home"
-msgstr "Pasta Pessoal"
+msgstr "Pasta pessoal"
 
 #: ../settings/main.c:274
 msgid "Filesystem"
@@ -49,7 +49,7 @@ msgstr "Lixo"
 
 #: ../settings/main.c:278
 msgid "Removable Devices"
-msgstr "Dispositivos Amovíveis"
+msgstr "Dispositivos amovíveis"
 
 #: ../settings/main.c:458
 #, c-format
@@ -58,23 +58,20 @@ msgstr "Não é possível criar lista de fundos \"%s\""
 
 #: ../settings/main.c:462 ../settings/main.c:779
 msgid "Backdrop List Error"
-msgstr "Erro na Lista de Fundos"
+msgstr "Erro na lista de fundos"
 
 #: ../settings/main.c:487
 msgid "Create/Load Backdrop List"
-msgstr "Criar/Carregar Lista de Fundos"
+msgstr "Criar/carregar lista de fundos"
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
-msgstr ""
-"O ficheiro \"%s\" não é um ficheiro de lista de fundos válido. Deseja "
-"sobrescrevê-lo?"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
+msgstr "O ficheiro \"%s\" não é um ficheiro válido. Deseja sobrescrevê-lo?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
-msgstr "Ficheiro de Lista Inválido"
+msgstr "O ficheiro da lista e inválido"
 
 #: ../settings/main.c:519
 msgid "Overwriting the file will cause its contents to be lost."
@@ -91,11 +88,11 @@ msgstr "Falhou ao escrever a lista de fundos para \"%s\""
 
 #: ../settings/main.c:802
 msgid "Add Image File(s)"
-msgstr "Adicionar Ficheiro(s) de Imagem"
+msgstr "Adicionar ficheiro(s) de imagem"
 
 #: ../settings/main.c:811
 msgid "Image files"
-msgstr "Ficheiros de Imagem"
+msgstr "Ficheiros de imagem"
 
 #: ../settings/main.c:816
 msgid "All files"
@@ -132,16 +129,16 @@ msgstr "Gestor de definições"
 
 #: ../settings/main.c:1477
 msgid "SOCKET ID"
-msgstr "ID de SOCKET"
+msgstr "ID de \"SOCKET\""
 
 #: ../settings/main.c:1478
 msgid "Version information"
-msgstr "Informação de versão"
+msgstr "Informações de versão"
 
 #: ../settings/main.c:1498
 #, c-format
 msgid "Type '%s --help' for usage."
-msgstr "Digite '%s --help' para uso."
+msgstr "Digite \"%s --help\" para utilização."
 
 #: ../settings/main.c:1510
 msgid "The Xfce development team. All rights reserved."
@@ -154,7 +151,7 @@ msgstr "Por favor, reporte erros para <%s>."
 
 #: ../settings/main.c:1518
 msgid "Desktop Settings"
-msgstr "Definições do Ambiente de Trabalho"
+msgstr "Definições do ambiente de trabalho"
 
 #: ../settings/main.c:1520
 msgid "Unable to contact settings server"
@@ -162,7 +159,7 @@ msgstr "Incapaz de contactar o servidor de definições"
 
 #: ../settings/xfce-backdrop-settings.desktop.in.h:1
 msgid "Desktop "
-msgstr "Ambiente de Trabalho"
+msgstr "Ambiente de trabalho"
 
 #: ../settings/xfce-backdrop-settings.desktop.in.h:2
 msgid "Set desktop background and menu and icon behaviour"
@@ -191,11 +188,11 @@ msgstr "Adicionar uma imagem à lista"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr ""
+msgstr "Auto"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a random image from a list file"
-msgstr "Escolher ao acaso uma imagem de um ficheir

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 9a4269a770a811b39eb8d20d2b2a560b900d9f71 (commit)
   from d6785af78f96716983b0fb2c39cb95cabcba2ace (commit)

commit 9a4269a770a811b39eb8d20d2b2a560b900d9f71
Author: Dmitry Nikitin 
Date:   Fri Nov 5 14:29:29 2010 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

 po/uk.po |   98 +++--
 1 files changed, 94 insertions(+), 4 deletions(-)

diff --git a/po/uk.po b/po/uk.po
index 2ade184..e67a5bd 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-05 06:06+0100\n"
+"POT-Creation-Date: 2010-11-05 11:10+\n"
 "PO-Revision-Date: 2008-12-04 10:54+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
@@ -18,6 +18,96 @@ msgstr ""
 "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"
 
+#: ../thunar-vfs/exo-hal.c:434
+#, c-format
+msgid "External %s Drive"
+msgstr "Зовнішній %s носій"
+
+#: ../thunar-vfs/exo-hal.c:436
+#, c-format
+msgid "%s Drive"
+msgstr "%s носій"
+
+#: ../thunar-vfs/exo-hal.c:445
+msgid "External Floppy Drive"
+msgstr "Носій зовнійшній Floppy Drive"
+
+#: ../thunar-vfs/exo-hal.c:447
+msgid "Floppy Drive"
+msgstr "Носій Floppy"
+
+#: ../thunar-vfs/exo-hal.c:451
+msgid "Compact Flash Drive"
+msgstr "Носій Compact Flash"
+
+#: ../thunar-vfs/exo-hal.c:455
+msgid "Memory Stick Drive"
+msgstr "Носій Memory Stick"
+
+#: ../thunar-vfs/exo-hal.c:459
+msgid "Smart Media Drive"
+msgstr "Носій Smart Media"
+
+#: ../thunar-vfs/exo-hal.c:463
+msgid "SD/MMC Drive"
+msgstr "Носій SD/MMC"
+
+#: ../thunar-vfs/exo-hal.c:467
+msgid "Zip Drive"
+msgstr "Носій Zip"
+
+#: ../thunar-vfs/exo-hal.c:471
+msgid "Jaz Drive"
+msgstr "Носій Jaz"
+
+#: ../thunar-vfs/exo-hal.c:475
+msgid "Pen Drive"
+msgstr "Носій Pen"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:484
+#, c-format
+msgid "%s Music Player"
+msgstr "%s музичний плеєр"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:499
+#, c-format
+msgid "%s Digital Camera"
+msgstr "%s цифрова камера"
+
+#. last fallback to "Drive"
+#: ../thunar-vfs/exo-hal.c:522
+msgid "Drive"
+msgstr "Носій"
+
+#: ../thunar-vfs/exo-hal.c:739
+#, c-format
+msgid "Blank %s Disc"
+msgstr "Чистий %s диск"
+
+#: ../thunar-vfs/exo-hal.c:741
+#, c-format
+msgid "%s Disc"
+msgstr "%s диск"
+
+#. special case for pure audio disc
+#: ../thunar-vfs/exo-hal.c:746
+msgid "Audio CD"
+msgstr "Аудіо CD"
+
+#: ../thunar-vfs/exo-hal.c:782
+#, c-format
+msgid "%s Removable Volume"
+msgstr "%s з'ємний том"
+
+#: ../thunar-vfs/exo-hal.c:784
+#, c-format
+msgid "%s Volume"
+msgstr "%s том"
+
 #: ../thunar-vfs/exo-mount-point.c:218 ../thunar-vfs/exo-mount-point.c:247
 #: ../thunar-vfs/exo-mount-point.c:435
 #, c-format
@@ -30,7 +120,7 @@ msgstr "Не вдається відкрити файл \"%s\": %s"
 msgid "Failed to read folder contents"
 msgstr "Не вдається прочитати зміст теки"
 
-#: ../thunar-vfs/thunar-vfs-exec.c:590
+#: ../thunar-vfs/thunar-vfs-exec.c:597
 #, c-format
 msgid "Unknown error"
 msgstr "Невідома помилка"
@@ -277,13 +367,13 @@ msgstr "Хочете перезаписати його?"
 msgid "Do you want to skip it?"
 msgstr "Хочете пропустити його?"
 
-#: ../thunar-vfs/thunar-vfs-mime-database.c:1684
+#: ../thunar-vfs/thunar-vfs-mime-database.c:1683
 #, c-format
 msgid "Failed to load application from file %s"
 msgstr "Не вдається завантажити програму з файлу %s"
 
 #. tell the user that we failed to delete the application launcher
-#: ../thunar-vfs/thunar-vfs-mime-database.c:1750
+#: ../thunar-vfs/thunar-vfs-mime-database.c:1749
 #, c-format
 msgid "Failed to remove \"%s\": %s"
 msgstr "Не вдається видалити \"%s\": %s"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to c3db141b2b263b4e73a80a43b3044a379db83307 (commit)
   from 137276fd1470bd831ff798ba62ccb4d803cd6ba8 (commit)

commit c3db141b2b263b4e73a80a43b3044a379db83307
Author: Dmitry Nikitin 
Date:   Fri Nov 5 14:18:21 2010 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index f9f510c..cff5db1 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-27 10:09+\n"
+"POT-Creation-Date: 2010-11-05 11:09+\n"
 "PO-Revision-Date: 2009-01-26 16:20+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
@@ -189,7 +189,7 @@ msgstr "Інформація про версію"
 #: ../dialogs/appearance-settings/main.c:827
 #: ../dialogs/display-settings/main.c:1046
 #: ../dialogs/keyboard-settings/main.c:64
-#: ../dialogs/mouse-settings/main.c:1186 ../xfce4-settings-editor/main.c:63
+#: ../dialogs/mouse-settings/main.c:1188 ../xfce4-settings-editor/main.c:63
 #: ../xfce4-settings-helper/main.c:160 ../xfce4-settings-manager/main.c:58
 #, c-format
 msgid "Type '%s --help' for usage."
@@ -199,7 +199,7 @@ msgstr "Наберіть '%s --help' для використання."
 #: ../dialogs/appearance-settings/main.c:846
 #: ../dialogs/display-settings/main.c:1065
 #: ../dialogs/keyboard-settings/main.c:80
-#: ../dialogs/mouse-settings/main.c:1205 ../xfce4-settings-editor/main.c:82
+#: ../dialogs/mouse-settings/main.c:1207 ../xfce4-settings-editor/main.c:82
 #: ../xfce4-settings-helper/main.c:176 ../xfce4-settings-manager/main.c:71
 msgid "The Xfce development team. All rights reserved."
 msgstr "Команда розробників Xfce. Всі права застережено."
@@ -208,7 +208,7 @@ msgstr "Команда розробників Xfce. Всі права засте
 #: ../dialogs/appearance-settings/main.c:847
 #: ../dialogs/display-settings/main.c:1066
 #: ../dialogs/keyboard-settings/main.c:81
-#: ../dialogs/mouse-settings/main.c:1206 ../xfce4-settings-editor/main.c:83
+#: ../dialogs/mouse-settings/main.c:1208 ../xfce4-settings-editor/main.c:83
 #: ../xfce4-settings-helper/main.c:177 ../xfce4-settings-manager/main.c:72
 #, c-format
 msgid "Please report bugs to <%s>."
@@ -576,47 +576,51 @@ msgid "Unknown"
 msgstr "Невідомо"
 
 #. Set dialog title and icon
-#: ../dialogs/keyboard-settings/command-dialog.c:126
+#: ../dialogs/keyboard-settings/command-dialog.c:108
 msgid "Shortcut Command"
 msgstr "Команда для ярлика запуску"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:150
+#: ../dialogs/keyboard-settings/command-dialog.c:132
 msgid "Shortcut:"
 msgstr "Ярлик запуску:"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:160
+#: ../dialogs/keyboard-settings/command-dialog.c:142
 msgid "Command:"
 msgstr "Команда:"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:212
+#: ../dialogs/keyboard-settings/command-dialog.c:162
+msgid "Use _startup notification"
+msgstr "Використовувати пов_ідомлення при запуску"
+
+#: ../dialogs/keyboard-settings/command-dialog.c:209
 msgid "The command may not be empty."
 msgstr "Стрічка команди не може бути пустою."
 
-#: ../dialogs/keyboard-settings/command-dialog.c:232
+#: ../dialogs/keyboard-settings/command-dialog.c:229
 msgid "Select command"
 msgstr "Вибрати команду"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:240
+#: ../dialogs/keyboard-settings/command-dialog.c:237
 msgid "All Files"
 msgstr "Всі файли"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:245
+#: ../dialogs/keyboard-settings/command-dialog.c:242
 msgid "Executable Files"
 msgstr "Виконувані файли"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:260
+#: ../dialogs/keyboard-settings/command-dialog.c:257
 msgid "Perl Scripts"
 msgstr "Скрипти Perl"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:266
+#: ../dialogs/keyboard-settings/command-dialog.c:263
 msgid "Python Scripts"
 msgstr "Скрипти Python"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:272
+#: ../dialogs/keyboard-settings/command-dialog.c:269
 msgid "Ruby Scripts"
 msgstr "Скрипти Ruby"
 
-#: ../dialogs/keyboard-settings/command-dialog.c:278
+#: ../dialogs/keyboard-settings/command-dialog.c:275
 msgid "Shell Scripts"
 msgstr "Скрипти Shell"
 
@@ -739,40 +743,40 @@ msgstr "Неможливо з'єднатись з службою xfconf. При
 msgid "Could not create the settings dialog."
 msgstr "Неможливо створити діалог властивостей."
 
-#: ../dialogs/keyboard-settings/xfce-keyboard-settings.c:291
+#: ../dialogs/keyboard-settings/xfce-keyboard-settings.c:296
 msgid "Command"
 msgstr "Команда"
 
-#: ../dialogs/keyboard-settings/xfce-keyboard-settings.c:296
+#: ../dialogs/keyboard-settings/xfce-keyboard-settings.c:301
 msgid "Shortcut"
 msgstr "Ярлик запуску"
 
-#: ../dialog

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to f09b5e50c8ce1196ea75d7dc3a347696ddfa9bf2 (commit)
   from 099c4497bbacabc4a712886ed8b318e7185bcdcb (commit)

commit f09b5e50c8ce1196ea75d7dc3a347696ddfa9bf2
Author: Dmitry Nikitin 
Date:   Fri Nov 5 14:15:22 2010 +0100

l10n: Updated Ukrainian (uk) translation to 100%

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

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

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

diff --git a/po/uk.po b/po/uk.po
index 3ec02b1..1e56b7b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: libexo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-13 10:00+\n"
+"POT-Creation-Date: 2010-11-05 11:00+\n"
 "PO-Revision-Date: 2008-11-24 12:00+0200\n"
 "Last-Translator: Dmitry Nikitin \n"
 "Language-Team: Ukrainian \n"
@@ -1170,6 +1170,10 @@ msgstr "Переглядач Web Galeon"
 msgid "GNOME Terminal"
 msgstr "Термінал GNOME"
 
+#: ../exo-helper/helpers/icedove.desktop.in.in.h:1
+msgid "Icedove"
+msgstr "Icedove"
+
 #: ../exo-helper/helpers/kmail.desktop.in.in.h:1
 msgid "KMail"
 msgstr "Переглядач пошти KMail"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to ea8ad99ba95cd96f9ff3e717a2516de65480451a (commit)
   from 89aeb80e70c4b7d82bf15dd7a6570db650d5be83 (commit)

commit ea8ad99ba95cd96f9ff3e717a2516de65480451a
Author: Masato Hashimoto 
Date:   Fri Nov 5 13:37:54 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

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

diff --git a/po/ja.po b/po/ja.po
index c7ee9f1..a7d1285 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -17,8 +17,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4 4.5.91\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-02 15:35+0900\n"
-"PO-Revision-Date: 2009-10-11 17:11+0900\n"
+"POT-Creation-Date: 2010-11-05 21:35+0900\n"
+"PO-Revision-Date: 2010-11-05 21:35+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
@@ -47,25 +47,25 @@ msgid "Session manager socket"
 msgstr "セッションマネージャソケット"
 
 #: ../settings-dialogs/tweaks-settings.c:421
-#: ../settings-dialogs/workspace-settings.c:360
+#: ../settings-dialogs/workspace-settings.c:370
 #: ../settings-dialogs/xfwm4-settings.c:310
 msgid "SOCKET ID"
 msgstr "SOCKET ID"
 
 #: ../settings-dialogs/tweaks-settings.c:422
-#: ../settings-dialogs/workspace-settings.c:361
+#: ../settings-dialogs/workspace-settings.c:371
 #: ../settings-dialogs/xfwm4-settings.c:312
 msgid "Version information"
 msgstr "バージョン情報"
 
 #: ../settings-dialogs/tweaks-settings.c:440
-#: ../settings-dialogs/workspace-settings.c:378
+#: ../settings-dialogs/workspace-settings.c:388
 #: ../settings-dialogs/xfwm4-settings.c:948
 msgid "."
 msgstr "."
 
 #: ../settings-dialogs/tweaks-settings.c:444
-#: ../settings-dialogs/workspace-settings.c:382
+#: ../settings-dialogs/workspace-settings.c:392
 #: ../settings-dialogs/xfwm4-settings.c:952
 #, c-format
 msgid ""
@@ -75,17 +75,17 @@ msgstr ""
 "%s: %s\n"
 "%s --help で使用可能なすべてのコマンドラインオプションが表示されます。\n"
 
-#: ../settings-dialogs/workspace-settings.c:72
-#: ../settings-dialogs/workspace-settings.c:87
+#: ../settings-dialogs/workspace-settings.c:73
+#: ../settings-dialogs/workspace-settings.c:88
 #, c-format
 msgid "Workspace %d"
 msgstr "ワークスペース %d"
 
-#: ../settings-dialogs/workspace-settings.c:252
+#: ../settings-dialogs/workspace-settings.c:280
 msgid "Workspace Name"
 msgstr "ワークスペース名"
 
-#: ../settings-dialogs/workspace-settings.c:360
+#: ../settings-dialogs/workspace-settings.c:370
 #: ../settings-dialogs/xfwm4-settings.c:310
 msgid "Settings manager socket"
 msgstr "マネージャソケットの設定"
@@ -175,13 +175,11 @@ msgstr "テーマ(_T)"
 
 #. Raise focus delay
 #: ../settings-dialogs/xfwm4-dialog.glade.h:15
-#, fuzzy
 msgid "Long"
 msgstr "長い"
 
 #. Raise focus delay
 #: ../settings-dialogs/xfwm4-dialog.glade.h:17
-#, fuzzy
 msgid "Short"
 msgstr "短い"
 
@@ -189,13 +187,11 @@ msgstr "短い"
 #. Smart placement size
 #: ../settings-dialogs/xfwm4-dialog.glade.h:19
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:5
-#, fuzzy
 msgid "Small"
 msgstr "小さい"
 
 #. Edge resistance
 #: ../settings-dialogs/xfwm4-dialog.glade.h:21
-#, fuzzy
 msgid "Wide"
 msgstr "大きい"
 
@@ -647,12 +643,11 @@ msgid ""
 "This will reset all shortcuts to their default values. Do you really want to "
 "do this?"
 msgstr ""
-"これはすべてのショートカットキーをデフォルト値にリセットします。本当によろしい"
-"ですか?"
+"これはすべてのショートカットキーをデフォルト値にリセットします。本当によろし"
+"いですか?"
 
 #. Smart placement size
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
-#, fuzzy
 msgid "Large"
 msgstr "大きい"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 34b09310e0559a3efe098a8160078fa5671b57b7 (commit)
   from 52e75173088bc07dbe41e69e7d9497bee6589623 (commit)

commit 34b09310e0559a3efe098a8160078fa5671b57b7
Author: Masato Hashimoto 
Date:   Fri Nov 5 13:30:32 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

 po/ja.po |  166 +-
 1 files changed, 77 insertions(+), 89 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 0699f55..7be557b 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: thunar-volman 0.2.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-07-26 12:03+0200\n"
-"PO-Revision-Date: 2008-11-09 14:59+0900\n"
-"Last-Translator: Nobuhiro Iwamatsu \n"
+"POT-Creation-Date: 2010-11-05 21:29+0900\n"
+"PO-Revision-Date: 2010-11-05 21:28+0900\n"
+"Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
 "MIME-Version: 1.0\n"
@@ -19,9 +19,8 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../thunar-volman/main.c:59
-#, fuzzy
 msgid "The syfs path of the newly added device"
-msgstr "新しく追加されたデバイスの HAL デバイス UDI"
+msgstr "新たに追加されたデバイスの Sysfs パス"
 
 #: ../thunar-volman/main.c:60
 #: ../thunar-volman-settings/thunar-volman-settings.desktop.in.in.h:1
@@ -34,28 +33,29 @@ msgid "Print version information and exit"
 msgstr "バージョン情報を表示して終了する"
 
 #. setup application name
-#: ../thunar-volman/main.c:93
+#: ../thunar-volman/main.c:96
 msgid "Thunar Volume Manager"
 msgstr "Thunar ボリュームマネージャ"
 
-#: ../thunar-volman/main.c:133
+#: ../thunar-volman/main.c:135
 msgid "All rights reserved."
-msgstr ""
+msgstr "All rights reserved."
 
-#: ../thunar-volman/main.c:134
+#: ../thunar-volman/main.c:136
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "バグは <%s> に報告してください。"
 
-#: ../thunar-volman/main.c:188
+#: ../thunar-volman/main.c:190
 #, c-format
 msgid "There is no device with the sysfs path \"%s\""
-msgstr ""
+msgstr "Sysfs パス \"%s\" にデバイスはありません"
 
-#: ../thunar-volman/main.c:200
-#, fuzzy, c-format
+#: ../thunar-volman/main.c:202
+#, c-format
 msgid "Must specify the sysfs path of new devices with --device-added"
-msgstr "--device-added オプションで新しい HAL デバイス UDI を指定してください"
+msgstr ""
+"--device-added オプションで新しいデバイスの Sysfs パスを指定してください"
 
 #. ...so we need to prompt what to do
 #: ../thunar-volman/tvm-block-device.c:204
@@ -63,9 +63,8 @@ msgid "Photos and Music"
 msgstr "写真と音楽"
 
 #: ../thunar-volman/tvm-block-device.c:205
-#, fuzzy
 msgid "Photos were found on your portable music player"
-msgstr "携帯音楽プレイヤー内に写真が見つかりました。"
+msgstr "携帯音楽プレイヤー内に写真が見つかりました"
 
 #: ../thunar-volman/tvm-block-device.c:206
 msgid "Would you like to import the photos or manage the music?"
@@ -76,7 +75,7 @@ msgstr "写真を取り込みますか? それとも音楽を管理しますか?
 #: ../thunar-volman/tvm-block-device.c:378
 #: ../thunar-volman/tvm-block-device.c:425
 #: ../thunar-volman/tvm-block-device.c:507
-#: ../thunar-volman/tvm-block-device.c:826 ../thunar-volman/tvm-run.c:192
+#: ../thunar-volman/tvm-block-device.c:829 ../thunar-volman/tvm-run.c:192
 #: ../thunar-volman/tvm-run.c:203
 msgid "Ig_nore"
 msgstr "無視する(_N)"
@@ -96,9 +95,8 @@ msgid "Photo Import"
 msgstr "写真の取り込み"
 
 #: ../thunar-volman/tvm-block-device.c:274
-#, fuzzy
 msgid "A photo card has been detected"
-msgstr "写真が保存されたメディアを検出しました。"
+msgstr "写真が保存されたメディアを検出しました"
 
 #: ../thunar-volman/tvm-block-device.c:275
 msgid ""
@@ -147,144 +145,140 @@ msgstr "自動的に開くことができます"
 msgid "_Open"
 msgstr "開く(_O)"
 
-#: ../thunar-volman/tvm-block-device.c:616
+#: ../thunar-volman/tvm-block-device.c:619
 msgid "CD mounted"
-msgstr ""
+msgstr "CD をマウントしました"
 
-#: ../thunar-volman/tvm-block-device.c:616
+#: ../thunar-volman/tvm-block-device.c:619
 msgid "DVD mounted"
-msgstr ""
+msgstr "DVD をマウントしました"
 
-#: ../thunar-volman/tvm-block-device.c:618
+#: ../thunar-volman/tvm-block-device.c:621
 msgid "The CD was mounted automatically"
-msgstr ""
+msgstr "CD が自動的にマウントされました"
 
-#: ../thunar-volman/tvm-block-device.c:619
+#: ../thunar-volman/tvm-block-device.c:622
 msgid "The DVD was mounted automatically"
-msgstr ""
+msgstr "DVD が自動的にマウントされました"
 
-#: ../thunar-volman/tvm-block-device.c:629
+#: ../thunar-volman/tvm-block-device.c:632
 msgid "Volume mounted"
-msgstr ""
+msgstr "ボリュームをマウントしました"
 
-#: ../thunar-volman/tvm-block-device.c:632
+#: ../thunar-volman/tvm-block-device.c:635
 #, c-format
 msgid "The volume \"%s\" was mounted automatically"
-msgstr ""
+msgstr "ボリューム \"%s\" が自動的にマウントされました"
 
-#: ../thunar-volman/tvm-block-device.c:637
+#: ../thunar-volman/tvm-block-device.c:640
 #, c-format
 msgid "The inserted volume was mounted automatically"
-msgstr ""
+msgstr "挿入したボリュームが自動的にマウントされました"
 
-#: ../thunar-volman/tvm-block-device.c:691
+#: ../thunar-volman/tvm-block-device.c:694
 #, c-format
 msgid "Unable to locate mount point"
-msgstr ""

[Xfce4-commits] Link against x11 for XInternAtom.

2010-11-05 Thread Nick Schermer
Updating branch refs/heads/master
 to d6785af78f96716983b0fb2c39cb95cabcba2ace (commit)
   from 31c853f8a867cfec85fbabf15c5d7f5aab9e8169 (commit)

commit d6785af78f96716983b0fb2c39cb95cabcba2ace
Author: Nick Schermer 
Date:   Fri Nov 5 12:41:21 2010 +0100

Link against x11 for XInternAtom.

 configure.in.in|5 +
 thunar-vfs/Makefile.am |2 ++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 6a78cbf..d07ba0c 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -153,6 +153,11 @@ dnl *** Check for i18n support ***
 dnl **
 XDT_I18N([...@linguas@])
 
+dnl ***
+dnl *** Check for X Window System installed ***
+dnl ***
+XDT_CHECK_LIBX11_REQUIRE()
+
 dnl ***
 dnl *** Check for required packages ***
 dnl ***
diff --git a/thunar-vfs/Makefile.am b/thunar-vfs/Makefile.am
index 3872705..4e545f9 100644
--- a/thunar-vfs/Makefile.am
+++ b/thunar-vfs/Makefile.am
@@ -140,6 +140,7 @@ libthunar_vfs_1_la_CFLAGS = 
\
$(LIBJPEG_CFLAGS)   \
$(LIBPNG_CFLAGS)\
$(LIBSTARTUP_NOTIFICATION_CFLAGS)   \
+   $(LIBX11_CFLAGS)\
$(PLATFORM_CFLAGS)
 
 libthunar_vfs_1_la_LDFLAGS =   \
@@ -155,6 +156,7 @@ libthunar_vfs_1_la_LIBADD = 
\
$(LIBJPEG_LIBS) \
$(LIBPNG_LIBS)  \
$(LIBSTARTUP_NOTIFICATION_LIBS) \
+   $(LIBX11_LIBS)  \
-lm
 
 thunar_vfs_helperdir = $(libdir)/thunar-vfs-$(THUNAR_VFS_VERSION_API)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Fix buildbot problem with environ.

2010-11-05 Thread Nick Schermer
Updating branch refs/heads/master
 to 31c853f8a867cfec85fbabf15c5d7f5aab9e8169 (commit)
   from 97796b91b7c106f39a9e2d29b5f581de11fd0501 (commit)

commit 31c853f8a867cfec85fbabf15c5d7f5aab9e8169
Author: Nick Schermer 
Date:   Fri Nov 5 12:26:29 2010 +0100

Fix buildbot problem with environ.

 configure.in.in  |3 ++-
 thunar-vfs/thunar-vfs-exec.c |6 ++
 2 files changed, 8 insertions(+), 1 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index f3bc968..6a78cbf 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -107,7 +107,8 @@ AC_CHECK_HEADERS([ctype.h dirent.h errno.h fcntl.h 
fnmatch.h fstab.h grp.h \
   string.h syslog.h sys/xattr.h sys/extattr.h sys/cdio.h \
   sys/mman.h sys/mnttab.h sys/mount.h sys/param.h 
sys/resource.h \
   sys/stat.h sys/statfs.h sys/statvfs.h sys/time.h sys/ucred.h 
\
-  sys/uio.h sys/vfs.h sys/wait.h time.h wchar.h wctype.h])
+  sys/uio.h sys/vfs.h sys/wait.h time.h wchar.h wctype.h \
+  crt_externs.h unistd.h])
 
 dnl 
 dnl *** Check for standard functions ***
diff --git a/thunar-vfs/thunar-vfs-exec.c b/thunar-vfs/thunar-vfs-exec.c
index 1ac4e7c..6ffb005 100644
--- a/thunar-vfs/thunar-vfs-exec.c
+++ b/thunar-vfs/thunar-vfs-exec.c
@@ -38,6 +38,12 @@
 #ifdef HAVE_STRING_H
 #include 
 #endif
+#ifdef HAVE_UNISTD_H
+#include 
+#endif
+#ifdef HAVE_CRT_EXTERNS_H
+#include  /* for _NSGetEnviron */
+#endif
 
 #include 
 #include 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to c851477a8f665de1b1680c229966936d12f827a8 (commit)
   from c7c2e9b8c23e2579f82daf7d730a5ec67a4b3cda (commit)

commit c851477a8f665de1b1680c229966936d12f827a8
Author: Robert Hartl 
Date:   Fri Nov 5 12:17:37 2010 +0100

l10n: Updated Slovak (sk) translation to 68%

New status: 146 messages complete with 41 fuzzies and 25 untranslated.

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

 po/sk.po |  119 +++---
 1 files changed, 36 insertions(+), 83 deletions(-)

diff --git a/po/sk.po b/po/sk.po
index 2a96f4a..97a4902 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,14 +7,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 20:14+0100\n"
+"POT-Creation-Date: 2010-11-05 11:09+\n"
 "PO-Revision-Date: 2009-11-04 14:44+0100\n"
 "Last-Translator: Robert Hartl \n"
 "Language-Team: Slovak \n"
-"Language: sk\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8-bit\n"
+"Language: sk\n"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
@@ -63,10 +63,8 @@ msgstr "Vytvoriť alebo načítať zoznam pozadí"
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
-msgstr ""
-"Súbor \"%s\" nie je  platný súborom zoznamu pozadia.  Prajete si ho prepísať?"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
+msgstr "Súbor \"%s\" nie je  platný súborom zoznamu pozadia.  Prajete si ho 
prepísať?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
@@ -264,11 +262,8 @@ msgid "Specifies the \"right\" or \"bottom\" color of the 
gradient"
 msgstr "Určuje \"pravú\" alebo \"spodnú\" farbu farebného prechodu"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
-msgstr ""
-"Určuje jednotnú farbu alebo \"ľavú\" alebo \"vrchnú\" farbu farebného "
-"prechodu"
+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient"
+msgstr "Určuje jednotnú farbu alebo \"ľavú\" alebo \"vrchnú\" farbu farebného 
prechodu"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
 msgid "Specify how the image will be resized to fit the screen"
@@ -415,9 +410,7 @@ msgstr "Zobraziť ikony _aplikácií v ponuke"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:28
 msgid "Show _window list menu on desktop middle click"
-msgstr ""
-"Zobraziť ponuku _zoznam okien pri kliknutí prostredným tlačidlom myši na "
-"plochu"
+msgstr "Zobraziť ponuku _zoznam okien pri kliknutí prostredným tlačidlom myši 
na plochu"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:29
 msgid "Show applications menu on _desktop right click"
@@ -432,11 +425,8 @@ msgid "Show workspace _names in list"
 msgstr "Zobrazovať _názvy pracovných plôch v ponuke"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:33
-msgid ""
-"Specify the transparency level for the rounded label drawn behind the icon "
-"text"
-msgstr ""
-"Zadajte úroveň priehľadnosti zaobleného popisku vykresleného za textom ikony"
+msgid "Specify the transparency level for the rounded label drawn behind the 
icon text"
+msgstr "Zadajte úroveň priehľadnosti zaobleného popisku vykresleného za textom 
ikony"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:37
 msgid "Use _submenus for the windows in each workspace"
@@ -645,8 +635,7 @@ msgid "Desktop Folder Error"
 msgstr "Chyba pracovnej plochy"
 
 #: ../src/xfdesktop-file-icon-manager.c:503
-msgid ""
-"A normal file with the same name already exists. Please delete or rename it."
+msgid "A normal file with the same name already exists. Please delete or 
rename it."
 msgstr ""
 
 #: ../src/xfdesktop-file-icon-manager.c:606
@@ -669,12 +658,8 @@ msgstr "Výber aplikácie nebolo možné otvoriť."
 #: ../src/xfdesktop-file-utils.c:1102 ../src/xfdesktop-file-utils.c:1163
 #: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1314
 #, fuzzy
-msgid ""
-"This feature requires a file manager service to be present (such as the one "
-"supplied by Thunar)."
-msgstr ""
-"Táto vlastnosť vyžaduje prítomnosť služby správcu súborov (napríklad "
-"aplikáciu Thunar)."
+msgid "This feature requires a file manager service to be present (such as the 
one supplied by Thunar)."
+msgstr "Táto vlastnosť vyžaduje prítomnosť služby správcu súborov (napríklad 
aplikáciu Thunar)."
 
 #. printf is to be translator-friendly
 #: ../src/xfdesktop-file-icon-manager.c:752
@@ -704,12 +689,8 @@ msgid "Open With \"%s\""
 msgstr "Otvoriť pomocou \"%s\""
 
 #: ../src/xfdesktop-file-icon-manager.c:1000
-msgid ""
-"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
-"edit launchers and links on the desktop."
-msgstr ""
-"Nie je možné spustiť \"exo-desktop-item-edit\". Táto ap

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 2b3cfd2b645cfa7128d87779783c3accb57a2bb4 (commit)
   from 7e010ed4b708c5c31fde8890a49d4c0546a27a9f (commit)

commit 2b3cfd2b645cfa7128d87779783c3accb57a2bb4
Author: Masato Hashimoto 
Date:   Fri Nov 5 11:57:34 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

 po/ja.po |  855 ++
 1 files changed, 193 insertions(+), 662 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 565d785..da54b4e 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.5.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 20:14+0100\n"
-"PO-Revision-Date: 2009-10-21 00:57+0900\n"
+"POT-Creation-Date: 2010-11-05 18:08+0900\n"
+"PO-Revision-Date: 2010-11-05 19:38+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
@@ -20,7 +20,8 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
+#: ../common/xfdesktop-common.c:96
+#: ../common/xfdesktop-common.c:200
 #, c-format
 msgid "Backdrop list file is not valid"
 msgstr "画像リストファイルが正しくありません"
@@ -35,7 +36,8 @@ msgstr ""
 "%s\n"
 "サイズ: %d x %d"
 
-#: ../settings/main.c:272 ../src/xfdesktop-special-file-icon.c:247
+#: ../settings/main.c:272
+#: ../src/xfdesktop-special-file-icon.c:247
 #: ../src/xfdesktop-special-file-icon.c:413
 msgid "Home"
 msgstr "ホーム"
@@ -58,7 +60,8 @@ msgstr "リムーバブルデバイス"
 msgid "Cannot create backdrop list \"%s\""
 msgstr "画像リスト \"%s\" を作成できません"
 
-#: ../settings/main.c:462 ../settings/main.c:779
+#: ../settings/main.c:462
+#: ../settings/main.c:779
 msgid "Backdrop List Error"
 msgstr "画像リストエラー"
 
@@ -68,10 +71,8 @@ msgstr "画像リストの作成/読み込み"
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
-msgstr ""
-"ファイル \"%s\" は正常な画像リストファイルではありません。上書きしますか?"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
+msgstr "ファイル \"%s\" は正常な画像リストファイルではありません。上書きしますか?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
@@ -92,7 +93,7 @@ msgstr "画像リスト \"%s\" に書き込めませんでした"
 
 #: ../settings/main.c:802
 msgid "Add Image File(s)"
-msgstr "画像ファイルを追加"
+msgstr "画像ファイルの追加"
 
 #: ../settings/main.c:811
 msgid "Image files"
@@ -193,7 +194,7 @@ msgstr "画像をリストに追加します"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr ""
+msgstr "自動"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a random image from a list file"
@@ -206,7 +207,7 @@ msgstr "明度(_R):"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
 msgid "Centered"
-msgstr ""
+msgstr "中央揃え"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
 msgid "Create a new list, or load an existing one"
@@ -219,7 +220,7 @@ msgstr "すべての画像を表示しません"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 #: ../settings/xfdesktop-settings-ui.glade.h:12
 msgid "Horizontal gradient"
-msgstr ""
+msgstr "水平グラデーション"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
 msgid "Image _list"
@@ -246,7 +247,7 @@ msgstr "彩度(_T):"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 #: ../settings/xfdesktop-settings-ui.glade.h:23
 msgid "Scaled"
-msgstr ""
+msgstr "長辺を画面に合わせる"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
@@ -264,15 +265,14 @@ msgstr "選択した単一の画像を背景にします"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 #: ../settings/xfdesktop-settings-ui.glade.h:32
 msgid "Solid color"
-msgstr ""
+msgstr "単一色"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
 msgstr "グラデーションの \"右側\" または \"下側\" の色を指定します"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient"
 msgstr "グラデーションの \"左側\" または \"上側\" の色を指定します"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
@@ -290,27 +290,27 @@ msgstr "スタイル(_Y):"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:28
 #: ../settings/xfdesktop-settings-ui.glade.h:34
 msgid "Stretched"
-msgstr ""
+msgstr "縦横比を維持せず全画面化"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:29
 #: ../settings/xfdesktop-settings-ui.glade.h:35
 msgid "Tiled"
-msgstr ""
+msgstr "タイル揃え"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:30
 #: ../sett

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 099c4497bbacabc4a712886ed8b318e7185bcdcb (commit)
   from dc908543a4076ea94855cc9ff4a239ed128ebea6 (commit)

commit 099c4497bbacabc4a712886ed8b318e7185bcdcb
Author: Masato Hashimoto 
Date:   Fri Nov 5 11:54:32 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

 po/ja.po |  202 +++---
 1 files changed, 128 insertions(+), 74 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 4aeece0..b9bfac7 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,19 +3,19 @@
 # This file is distributed under the same license as the exo package.
 # Daichi Kawahata , 2005-2007.
 # Nobuhiro Iwamatsu , 2008.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: exo 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-05 05:00+\n"
-"PO-Revision-Date: 2010-03-01 00:22+0900\n"
+"POT-Creation-Date: 2010-11-05 19:53+0900\n"
+"PO-Revision-Date: 2010-11-05 19:53+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
+"Language: ja\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
 
 #: ../exo/exo-cell-renderer-ellipsized-text.c:131
 #: ../exo/exo-cell-renderer-icon.c:144
@@ -63,8 +63,11 @@ msgstr "ファイル \"%s\" を読み込めませんでした: %s"
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
-msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image 
file"
-msgstr "画像 \"%s\" の読み込みに失敗しました: 理由は不明ですが、恐らく画像ファイルが破損しています"
+msgid ""
+"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
+msgstr ""
+"画像 \"%s\" の読み込みに失敗しました: 理由は不明ですが、恐らく画像ファイルが"
+"破損しています"
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
@@ -303,7 +306,8 @@ msgstr "マークアップ欄"
 # NOTE: GObject property
 #: ../exo/exo-icon-view.c:748
 msgid "Model column used to retrieve the text if using Pango markup"
-msgstr "Pango のマークアップが使用されている場合に文字を取得するためのモデル欄です。"
+msgstr ""
+"Pango のマークアップが使用されている場合に文字を取得するためのモデル欄です。"
 
 # NOTE: GObject property
 #: ../exo/exo-icon-view.c:762
@@ -317,8 +321,11 @@ msgstr "アイコン表示のためのモデルです。"
 
 # NOTE: GObject property
 #: ../exo/exo-icon-view.c:777
-msgid "How the text and icon of each item are positioned relative to each 
other"
-msgstr "それぞれのアイテムの文字とアイコンがお互いにどの位置に置かれるかを選択します。"
+msgid ""
+"How the text and icon of each item are positioned relative to each other"
+msgstr ""
+"それぞれのアイテムの文字とアイコンがお互いにどの位置に置かれるかを選択しま"
+"す。"
 
 # NOTE: GObject property
 #: ../exo/exo-icon-view.c:809
@@ -377,8 +384,12 @@ msgstr "シングルクリックのタイムアウト"
 
 # NOTE: GObject property
 #: ../exo/exo-icon-view.c:889 ../exo/exo-tree-view.c:172
-msgid "The amount of time after which the item under the mouse cursor will be 
selected automatically in single click mode"
-msgstr "シングルクリックモードの時にマウスカーソルの下にあるアイテムが自動的に選択状態になるまでの時間です。"
+msgid ""
+"The amount of time after which the item under the mouse cursor will be "
+"selected automatically in single click mode"
+msgstr ""
+"シングルクリックモードの時にマウスカーソルの下にあるアイテムが自動的に選択状"
+"態になるまでの時間です。"
 
 # NOTE: GObject property
 #: ../exo/exo-icon-view.c:904
@@ -443,8 +454,12 @@ msgid "_Add a new toolbar"
 msgstr "新しいツールバーを追加(_A)"
 
 #: ../exo/exo-toolbars-editor.c:221
-msgid "Drag an item onto the toolbars above to add it, from the toolbars in 
the items table to remove it."
-msgstr "追加するにはアイテムをツールバーの上にドラッグしてください。ツールバーからドラッグすると削除されます。"
+msgid ""
+"Drag an item onto the toolbars above to add it, from the toolbars in the "
+"items table to remove it."
+msgstr ""
+"追加するにはアイテムをツールバーの上にドラッグしてください。ツールバーからド"
+"ラッグすると削除されます。"
 
 #: ../exo/exo-toolbars-editor.c:538
 msgid "Separator"
@@ -660,44 +675,37 @@ msgstr "シェルスクリプト"
 msgid "Create Launcher %s"
 msgstr "ランチャ %s を作成"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
-#. avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:297
 msgid "_Name:"
 msgstr "名前(_N):"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
-#. avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:313
 msgid "C_omment:"
 msgstr "コメント(_O):"
 
-#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic
-#. conflicts
+#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic 
conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:329
 msgid "Comm_and:"
 msgstr "コマンド(_A):"
 
-#. TRANSLATORS: Label in "Create Link" dialog, make sure to avoid mnemonic
-#. conflicts
+#. TRANSLATORS: Label in "Create Link" dialog, make sure to avoid mnemonic 
conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:344
 msgid "_URL:"
 msgstr "URL(_U):"
 

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 7e010ed4b708c5c31fde8890a49d4c0546a27a9f (commit)
   from df21b2bdde84209ceeaf0a3745f9ae473e62414f (commit)

commit 7e010ed4b708c5c31fde8890a49d4c0546a27a9f
Author: Jari Rahkonen 
Date:   Fri Nov 5 11:51:32 2010 +0100

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 |  150 +-
 1 files changed, 70 insertions(+), 80 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index f4e678d..1bae32c 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,14 +8,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.7.x\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 20:14+0100\n"
-"PO-Revision-Date: 2010-11-04 11:53+0200\n"
+"POT-Creation-Date: 2010-11-05 05:09+\n"
+"PO-Revision-Date: 2010-11-05 12:50+0200\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
@@ -166,183 +166,179 @@ msgstr "Säädä työpöydän taustakuvaa, valikkoa ja 
kuvakkeita"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:1
 msgid "Adjustments"
-msgstr ""
+msgstr "Säädöt"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:2
-#, fuzzy
 msgid "Colors"
-msgstr "Työtila %d"
+msgstr "Värit"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:3
 msgid "Image"
-msgstr ""
+msgstr "Kuva"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:4
 msgid "Images"
-msgstr ""
+msgstr "Kuvat"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:5
 msgid "Add an image to the list"
-msgstr ""
+msgstr "Lisää kuva listaan"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr ""
+msgstr "Automaattinen"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a random image from a list file"
-msgstr ""
+msgstr "Valitse satunnainen kuva listatiedostosta"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:8
 msgid "B_rightness:"
-msgstr ""
+msgstr "Ki_rkkaus"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
 msgid "Centered"
-msgstr ""
+msgstr "Keskitetty"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
 msgid "Create a new list, or load an existing one"
-msgstr ""
+msgstr "Luo uusi tai lataa taustakuvalista"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:11
 msgid "Don't display an image at all"
-msgstr ""
+msgstr "Älä näytä taustakuvaa"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 #: ../settings/xfdesktop-settings-ui.glade.h:12
 msgid "Horizontal gradient"
-msgstr ""
+msgstr "Vaakaliukuväri"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
-#, fuzzy
 msgid "Image _list"
-msgstr "Kuvatiedostot"
+msgstr "Kuva_lista"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:14
 msgid "Increase or decrease the brightness of the final image"
-msgstr ""
+msgstr "Lisää tai vähennä taustakuvan kirkkautta."
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:15
 msgid "Increase or decrease the color saturation of the final image"
-msgstr ""
+msgstr "Lisää tai vähennä taustakuvan värikylläisyyttä."
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:16
 msgid "Remove the selected image(s) from the list"
-msgstr ""
+msgstr "Poista valitut kuvat listalta"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:17
 msgid "Sa_turation:"
-msgstr ""
+msgstr "V_ärikylläisyys:"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 #: ../settings/xfdesktop-settings-ui.glade.h:23
 msgid "Scaled"
-msgstr ""
+msgstr "Säädä kokoa"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
-msgstr ""
+msgstr "Ensimmäinen väri"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
 msgid "Select Second Color"
-msgstr ""
+msgstr "Toinen väri"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
 msgid "Select a single image as the backdrop"
-msgstr ""
+msgstr "Valitse yksittäinen taustakuva"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 #: ../settings/xfdesktop-settings-ui.glade.h:32
 msgid "Solid color"
-msgstr ""
+msgstr "Tasaväri"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
-msgstr ""
+msgstr "Liukuvärin \"oikeanpuoleinen\" tai \"alareunan\" väri"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
 msgi

[Xfce4-commits] Use xdt 4.7.2 macros and fix compiler warnings.

2010-11-05 Thread Nick Schermer
Updating branch refs/heads/master
 to 97796b91b7c106f39a9e2d29b5f581de11fd0501 (commit)
   from 9cd90cb636ee0980a239d0067e25629fdcfc6608 (commit)

commit 97796b91b7c106f39a9e2d29b5f581de11fd0501
Author: Nick Schermer 
Date:   Fri Nov 5 11:44:09 2010 +0100

Use xdt 4.7.2 macros and fix compiler warnings.

 autogen.sh|2 +-
 configure.in.in   |   79 ++---
 thunar-vfs/thunar-vfs-exec.c  |9 ++-
 thunar-vfs/thunar-vfs-io-trash.c  |8 +-
 thunar-vfs/thunar-vfs-mime-cache.c|   12 ++--
 thunar-vfs/thunar-vfs-mime-database.c |   24 +++---
 thunar-vfs/thunar-vfs-path.c  |6 +-
 thunar-vfs/thunar-vfs-thumb-jpeg.c|2 +-
 thunar-vfs/thunar-vfs-thumb.c |2 +-
 thunar-vfs/thunar-vfs-update-thumbnailers-cache.c |2 +-
 thunar-vfs/thunar-vfs-util.c  |6 +-
 thunar-vfs/thunar-vfs-volume-hal.c|8 +-
 thunar-vfs/thunar-vfs.c   |4 +-
 13 files changed, 51 insertions(+), 113 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index daed9b6..fd9f4e3 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -18,4 +18,4 @@ EOF
   exit 1
 }
 
-XDT_AUTOGEN_REQUIRED_VERSION="4.7.0" exec xdt-autogen $@
+XDT_AUTOGEN_REQUIRED_VERSION="4.7.2" exec xdt-autogen $@
diff --git a/configure.in.in b/configure.in.in
index 906b991..f3bc968 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -113,12 +113,13 @@ dnl 
 dnl *** Check for standard functions ***
 dnl 
 AC_FUNC_MMAP()
+AC_CHECK_DECLS([environ])
 AC_CHECK_FUNCS([attropen extattr_get_fd fgetxattr futimes getdents getfsspec \
 getfsstat lchmod localeconv localtime_r mbrtowc mkdtemp mkfifo 
\
 posix_madvise pread pwrite readdir_r sched_yield setgroupent \
 setmntent setpassent setpriority statfs statvfs statvfs1 \
 strcoll strlcpy strptime symlink syslog posix_fadvise \
-setfsent getvfsstat getmntent])
+setfsent getvfsstat getmntent _NSGetEnviron])
 
 dnl **
 dnl *** Linux/glibc specified work-arounds ***
@@ -274,87 +275,17 @@ BM_THUNAR_VFS_VOLUME_IMPL()
 dnl ***
 dnl *** Check for debugging support ***
 dnl ***
-AC_ARG_ENABLE([debug],
-AC_HELP_STRING([--enable-debug=@<:@no/minimum/yes/full@:>@], [Turn on 
debugging @<:@default=thunar_vfs_debug_default@:>@]),
-  [], [enable_debug=thunar_vfs_debug_default])
-AC_MSG_CHECKING([whether to enable debugging support])
-if test x"$enable_debug" = x"full" -o x"$enable_debug" = x"yes"; then
-  dnl Print the result
-  AC_MSG_RESULT([$enable_debug])
-
-  dnl Make sure we detect possible errors (if supported)
-  save_CFLAGS="$CFLAGS"
-  CFLAGS="$CFLAGS -Wall -Werror"
-  AC_MSG_CHECKING([whether $CC accepts -Wall -Werror])
-  AC_COMPILE_IFELSE(AC_LANG_SOURCE([int x;]), [
-AC_MSG_RESULT([yes])
-PLATFORM_CFLAGS="$PLATFORM_CFLAGS -Wall -Werror"
-  ], [
-AC_MSG_RESULT([no])
-  ])
-  CFLAGS="$save_CFLAGS"
-
-  dnl Paranoia for --enable-debug=full
-  if test x"$enable_debug" = x"full"; then
-dnl Enable extensive debugging
-PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_ENABLE_DEBUG"
-
-dnl Use -O0 -g3 if the compiler supports it
-save_CFLAGS="$CFLAGS"
-CFLAGS="$CFLAGS -O0 -g3"
-AC_MSG_CHECKING([whether $CC accepts -O0 -g3])
-AC_COMPILE_IFELSE(AC_LANG_SOURCE([int x;]), [
-  AC_MSG_RESULT([yes])
-  PLATFORM_CFLAGS="$PLATFORM_CFLAGS -O0 -g3"
-], [
-  AC_MSG_RESULT([no])
-])
-CFLAGS="$save_CFLAGS"
-  fi
-else
-  dnl Print the result
-  AC_MSG_RESULT([$enable_debug])
-
-  dnl Disable debugging (release build)
-  PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DNDEBUG"
-
-  dnl Disable object cast checks
-  PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_DISABLE_CAST_CHECKS"
-
-  dnl Disable all checks for --enable-debug=no
-  if test x"$enable_debug" = x"no"; then
-PLATFORM_CPPFLAGS="$PLATFORM_CPPFLAGS -DG_DISABLE_ASSERT 
-DG_DISABLE_CHECKS"
-  fi
-fi
+XDT_FEATURE_DEBUG([thunar_vfs_debug_default])
 
 dnl **
 dnl *** Check for linker optimizations ***
 dnl **
-AC_MSG_CHECKING([whether $LD accepts --as-needed])
-case `$LD --as-needed -v 2>&1 &1 
 #endif
 
+#ifdef HAVE__NSGETENVIRON
+/* for support under apple/darwin */
+#define environ (*_NSGetEnviron())
+#elif !HAVE_DECL_ENVIRON
+/* try extern if environ is not defined in unistd.h */
+extern gchar **environ;
+#endif
+
 
 
 static void tve_string_append_quoted  (GString *string,
@@ -439,7 +447,6 @@ thunar_vfs_exec_on_screen (GdkScreen   *screen,
   SnDisplay *sn_display = NULL;
   gint   sn_worksp

[Xfce4-commits] Add missing AC_CHECK_FUNCS (bug #6774).

2010-11-05 Thread Nick Schermer
Updating branch refs/heads/master
 to 4773e36acf6ae0d08d5ca3899e0b708b63e65bcb (commit)
   from 42786b1f54eea03e624ebaa262326c4fe1349a52 (commit)

commit 4773e36acf6ae0d08d5ca3899e0b708b63e65bcb
Author: Nick Schermer 
Date:   Fri Nov 5 11:21:32 2010 +0100

Add missing AC_CHECK_FUNCS (bug #6774).

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

diff --git a/configure.in.in b/configure.in.in
index 7fa59d4..906b991 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -117,7 +117,8 @@ AC_CHECK_FUNCS([attropen extattr_get_fd fgetxattr futimes 
getdents getfsspec \
 getfsstat lchmod localeconv localtime_r mbrtowc mkdtemp mkfifo 
\
 posix_madvise pread pwrite readdir_r sched_yield setgroupent \
 setmntent setpassent setpriority statfs statvfs statvfs1 \
-strcoll strlcpy strptime symlink syslog posix_fadvise])
+strcoll strlcpy strptime symlink syslog posix_fadvise \
+setfsent getvfsstat getmntent])
 
 dnl **
 dnl *** Linux/glibc specified work-arounds ***
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Drop tabs and trailing spaces.

2010-11-05 Thread Nick Schermer
Updating branch refs/heads/master
 to 42786b1f54eea03e624ebaa262326c4fe1349a52 (commit)
   from 62a90bf38a301f2eea646c412747abbc5ac8112d (commit)

commit 42786b1f54eea03e624ebaa262326c4fe1349a52
Author: Nick Schermer 
Date:   Fri Nov 5 11:15:33 2010 +0100

Drop tabs and trailing spaces.

 thunar-vfs/thunar-vfs-exec.c  |2 +-
 thunar-vfs/thunar-vfs-font-thumbnailer.c  |   10 +-
 thunar-vfs/thunar-vfs-io-local.c  |4 +-
 thunar-vfs/thunar-vfs-io-ops.c|2 +-
 thunar-vfs/thunar-vfs-io-trash.c  |6 +-
 thunar-vfs/thunar-vfs-job.c   |4 +-
 thunar-vfs/thunar-vfs-mime-application.c  |2 +-
 thunar-vfs/thunar-vfs-mime-cache.c|   20 +++---
 thunar-vfs/thunar-vfs-mime-database.c |2 +-
 thunar-vfs/thunar-vfs-mime-info.c |2 +-
 thunar-vfs/thunar-vfs-mime-legacy.c   |2 +-
 thunar-vfs/thunar-vfs-mime-parser.c   |   90 ++--
 thunar-vfs/thunar-vfs-monitor.c   |8 +-
 thunar-vfs/thunar-vfs-path.c  |6 +-
 thunar-vfs/thunar-vfs-private.c   |   10 +-
 thunar-vfs/thunar-vfs-simple-job.c|2 +-
 thunar-vfs/thunar-vfs-thumb.c |2 +-
 thunar-vfs/thunar-vfs-types.h |2 +-
 thunar-vfs/thunar-vfs-update-thumbnailers-cache.c |4 +-
 thunar-vfs/thunar-vfs-util.c  |   54 ++--
 thunar-vfs/thunar-vfs-volume-hal.c|4 +-
 thunar-vfs/thunar-vfs-volume-manager.c|6 +-
 thunar-vfs/thunar-vfs-volume.c|2 +-
 thunar-vfs/thunar-vfs.c   |2 +-
 24 files changed, 124 insertions(+), 124 deletions(-)

diff --git a/thunar-vfs/thunar-vfs-exec.c b/thunar-vfs/thunar-vfs-exec.c
index 414898c..9578121 100644
--- a/thunar-vfs/thunar-vfs-exec.c
+++ b/thunar-vfs/thunar-vfs-exec.c
@@ -540,7 +540,7 @@ thunar_vfs_exec_on_screen (GdkScreen   *screen,
  * @command_fmt : the command to execute (can be a printf
  *format string).
  * @error   : return location for errors or %NULL.
- * @... : additional parameters to fill into 
+ * @... : additional parameters to fill into
  *@command_fmt.
  *
  * Executes the given @command_fmt and returns %TRUE if the
diff --git a/thunar-vfs/thunar-vfs-font-thumbnailer.c 
b/thunar-vfs/thunar-vfs-font-thumbnailer.c
index 4de4c8b..6c51767 100644
--- a/thunar-vfs/thunar-vfs-font-thumbnailer.c
+++ b/thunar-vfs/thunar-vfs-font-thumbnailer.c
@@ -224,7 +224,7 @@ tft_save_pixbuf (GdkPixbuf *pixbuf,
   if (seen_pixel)
 break;
 }
-  
+
   if (seen_pixel)
 break;
 }
@@ -244,7 +244,7 @@ tft_save_pixbuf (GdkPixbuf *pixbuf,
   if (seen_pixel)
 break;
 }
-  
+
   if (seen_pixel)
 break;
 }
@@ -264,7 +264,7 @@ tft_save_pixbuf (GdkPixbuf *pixbuf,
   if (seen_pixel)
 break;
 }
-  
+
   if (seen_pixel)
 break;
 }
@@ -284,7 +284,7 @@ tft_save_pixbuf (GdkPixbuf *pixbuf,
   if (seen_pixel)
 break;
 }
-  
+
   if (seen_pixel)
 break;
 }
@@ -302,7 +302,7 @@ tft_save_pixbuf (GdkPixbuf *pixbuf,
   g_object_unref (G_OBJECT (subpixbuf));
   subpixbuf = scaled;
 }
-  
+
   succeed = gdk_pixbuf_save (subpixbuf, opt_output, "png", error, NULL);
   g_object_unref (G_OBJECT (subpixbuf));
 
diff --git a/thunar-vfs/thunar-vfs-io-local.c b/thunar-vfs/thunar-vfs-io-local.c
index 0741309..6d044d7 100644
--- a/thunar-vfs/thunar-vfs-io-local.c
+++ b/thunar-vfs/thunar-vfs-io-local.c
@@ -137,8 +137,8 @@ thunar_vfs_io_local_listdir_internal (volatile GList **list,
 continue;
 #elif defined(__GNUC__) && (defined(__amd64__) || defined(__x86_64__))
   __asm__ __volatile__ ("lock; cmpxchgq %q2, %1"
-   : "=a" (lr), "=m" (*list)
-   : "r" (ln), "m" (*list), "0" (lp));
+: "=a" (lr), "=m" (*list)
+: "r" (ln), "m" (*list), "0" (lp));
 
   if (G_UNLIKELY (lr != lp))
 continue;
diff --git a/thunar-vfs/thunar-vfs-io-ops.c b/thunar-vfs/thunar-vfs-io-ops.c
index 6b85b6c..e663ce1 100644
--- a/thunar-vfs/thunar-vfs-io-ops.c
+++ b/thunar-vfs/thunar-vfs-io-ops.c
@@ -240,7 +240,7 @@ _thunar_vfs_io_ops_copy_file (ThunarVfsPath 
*source_path,
  * real target path may be different than the suggested @target_path, and will
  * be returned in @target_path_return if not %NULL.
  *
- * The caller is responsible to free the #ThunarVfsPath object returned in 
+ * The caller is responsible to free the #ThunarVfsPath object returned in
  * @target_path_return using thunar_vfs_path_unref() when no longer needed

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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to b8628cf368e20de25013303c5abb21fe5f676fc3 (commit)
   from 061cea1645f45f86546b921deb5eaf8ab335559d (commit)

commit b8628cf368e20de25013303c5abb21fe5f676fc3
Author: Masato Hashimoto 
Date:   Fri Nov 5 11:10:38 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

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

diff --git a/po/ja.po b/po/ja.po
index 78e75d2..fa8b4a5 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -17,8 +17,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 14:35+0100\n"
-"PO-Revision-Date: 2010-11-04 19:41+0900\n"
+"POT-Creation-Date: 2010-11-05 19:07+0900\n"
+"PO-Revision-Date: 2010-11-05 19:07+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
@@ -2345,7 +2345,7 @@ msgstr "今日"
 #: ../thunar/thunar-util.c:190
 #, c-format
 msgid "Today at %X"
-msgstr "今日の %X"
+msgstr "今日の%X"
 
 #. TRANSLATORS: file was modified less than two days ago
 #: ../thunar/thunar-util.c:198
@@ -2356,13 +2356,13 @@ msgstr "昨日"
 #: ../thunar/thunar-util.c:203
 #, c-format
 msgid "Yesterday at %X"
-msgstr "昨日の %X"
+msgstr "昨日の%X"
 
 #. Days from last week
 #: ../thunar/thunar-util.c:211
 #, c-format
 msgid "%A at %X"
-msgstr "%Aの %X"
+msgstr "%Aの%X"
 
 #. Any other date
 #: ../thunar/thunar-util.c:216
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to dc908543a4076ea94855cc9ff4a239ed128ebea6 (commit)
   from b7f425fe53ae51a492b6eb1ecd08465d8dcff362 (commit)

commit dc908543a4076ea94855cc9ff4a239ed128ebea6
Author: Masato Hashimoto 
Date:   Fri Nov 5 10:21:15 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

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

diff --git a/po/ja.po b/po/ja.po
index dd8b3ec..4aeece0 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: exo 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 11:00+\n"
+"POT-Creation-Date: 2010-11-05 05:00+\n"
 "PO-Revision-Date: 2010-03-01 00:22+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
@@ -688,7 +688,7 @@ msgstr "URL(_U):"
 #. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid "Working _Directory:"
-msgstr "ディレクトリの編集(_D):"
+msgstr "作業ディレクトリ(_D):"
 
 #. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
 #. avoid mnemonic conflicts
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 98%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 061cea1645f45f86546b921deb5eaf8ab335559d (commit)
   from db727a2c985f936cecac3ac63bf201b5c811fea3 (commit)

commit 061cea1645f45f86546b921deb5eaf8ab335559d
Author: Yaron Shahrabani 
Date:   Fri Nov 5 10:19:58 2010 +0100

l10n: Updated Hebrew (he) translation to 98%

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

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

 po/he.po |   12 +---
 1 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/po/he.po b/po/he.po
index e5ade0c..a5a13a7 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3050,16 +3050,15 @@ msgid "Failed to save actions to disk."
 msgstr "לא ניתן לשמור את הפעולות לדיסק."
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:436
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Are you sure that you want to delete\n"
 "action \"%s\"?"
-msgstr "האם אתה בטוח שברצונך למחוק את \"%s\"/"
+msgstr "האם אכן ברצונך למחוק את\\הפעולה \"%s\"?"
 
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:437
-#, fuzzy
 msgid "If you delete a custom action, it is permanently lost."
-msgstr "אם תמחק את הקובץ, הוא יאבד לתמיד ולא תוכל לגשת אליו לעולם."
+msgstr "אם פקודה מותאמת אישית נמחקת, אין כל אפשרות לשחזר אותה."
 
 #. Basic
 #. 
@@ -3081,7 +3080,7 @@ msgstr "_תיאור:"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:154
 msgid "The description of the action that will be displayed as tooltip in the 
statusbar when selecting the item from the context menu."
-msgstr ""
+msgstr "תיאור הפעולה שתוצג כחלונית עצה בשורת המצב בעת בחירת הפריט מתפריט 
ההקשר."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:167
 msgid "_Command:"
@@ -3096,9 +3095,8 @@ msgid "Browse the file system to select an application to 
use for this action."
 msgstr "עיין במערכת הקבצים כדי לבחור תוכנה לשימוש בפעולה זאת."
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:203
-#, fuzzy
 msgid "Use Startup Notification"
-msgstr "השתמש בהתראת הפעלה"
+msgstr "שימוש בהתרעת התחלה"
 
 #: ../plugins/thunar-uca/thunar-uca-editor.c:204
 msgid "Enable this option if you want a waiting cursor to be shown while the 
action is launched. This is also highly recommended if you have focus stealing 
prevention enabled in your window manager."
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 252810daf017c095af6e8e4b280ec2af38438003 (commit)
   from f755b7f6794b72ce2d81da6de65df362d0663cbc (commit)

commit 252810daf017c095af6e8e4b280ec2af38438003
Author: Yaron Shahrabani 
Date:   Fri Nov 5 10:13:49 2010 +0100

l10n: Updated Hebrew (he) translation to 100%

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

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

 po/he.po |   96 --
 1 files changed, 93 insertions(+), 3 deletions(-)

diff --git a/po/he.po b/po/he.po
index 159d43e..f08cf35 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-07-14 04:08+\n"
+"POT-Creation-Date: 2010-11-05 05:10+\n"
 "PO-Revision-Date: 2007-01-20 14:29+0200\n"
 "Last-Translator: Yuval Tanny \n"
 "Language-Team: Hebrew \n"
@@ -18,6 +18,96 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
+#: ../thunar-vfs/exo-hal.c:433
+#, c-format
+msgid "External %s Drive"
+msgstr "כונן %s חיצוני"
+
+#: ../thunar-vfs/exo-hal.c:435
+#, c-format
+msgid "%s Drive"
+msgstr "כונן %s"
+
+#: ../thunar-vfs/exo-hal.c:444
+msgid "External Floppy Drive"
+msgstr "כונן תקליטונים חיצוני"
+
+#: ../thunar-vfs/exo-hal.c:446
+msgid "Floppy Drive"
+msgstr "כונן תקליטונים"
+
+#: ../thunar-vfs/exo-hal.c:450
+msgid "Compact Flash Drive"
+msgstr "כונן Compact Flash"
+
+#: ../thunar-vfs/exo-hal.c:454
+msgid "Memory Stick Drive"
+msgstr "כונן Memory Stick"
+
+#: ../thunar-vfs/exo-hal.c:458
+msgid "Smart Media Drive"
+msgstr "כונן Smart Media"
+
+#: ../thunar-vfs/exo-hal.c:462
+msgid "SD/MMC Drive"
+msgstr "כונן SD/MMC"
+
+#: ../thunar-vfs/exo-hal.c:466
+msgid "Zip Drive"
+msgstr "כונן Zip"
+
+#: ../thunar-vfs/exo-hal.c:470
+msgid "Jaz Drive"
+msgstr "כונן Jazz"
+
+#: ../thunar-vfs/exo-hal.c:474
+msgid "Pen Drive"
+msgstr "כונן USB נשלף"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:483
+#, c-format
+msgid "%s Music Player"
+msgstr "נגן מוזיקה %s"
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:498
+#, c-format
+msgid "%s Digital Camera"
+msgstr "מצלמה דיגיטלית %s"
+
+#. last fallback to "Drive"
+#: ../thunar-vfs/exo-hal.c:521
+msgid "Drive"
+msgstr "כונן"
+
+#: ../thunar-vfs/exo-hal.c:738
+#, c-format
+msgid "Blank %s Disc"
+msgstr "תקליטור %s ריק"
+
+#: ../thunar-vfs/exo-hal.c:740
+#, c-format
+msgid "%s Disc"
+msgstr "תקליטור %s"
+
+#. special case for pure audio disc
+#: ../thunar-vfs/exo-hal.c:745
+msgid "Audio CD"
+msgstr "תקליטור שמע"
+
+#: ../thunar-vfs/exo-hal.c:781
+#, c-format
+msgid "%s Removable Volume"
+msgstr "כרך נשלף %s"
+
+#: ../thunar-vfs/exo-hal.c:783
+#, c-format
+msgid "%s Volume"
+msgstr "כרך %s"
+
 #: ../thunar-vfs/exo-mount-point.c:218 ../thunar-vfs/exo-mount-point.c:247
 #: ../thunar-vfs/exo-mount-point.c:435
 #, c-format
@@ -275,13 +365,13 @@ msgstr "האם ברצונך לשכתב עליו?"
 msgid "Do you want to skip it?"
 msgstr "האם ברצונך לדלג עליו?"
 
-#: ../thunar-vfs/thunar-vfs-mime-database.c:1684
+#: ../thunar-vfs/thunar-vfs-mime-database.c:1683
 #, c-format
 msgid "Failed to load application from file %s"
 msgstr "לא ניתן לטעון את היישום מהקובץ %s"
 
 #. tell the user that we failed to delete the application launcher
-#: ../thunar-vfs/thunar-vfs-mime-database.c:1750
+#: ../thunar-vfs/thunar-vfs-mime-database.c:1749
 #, c-format
 msgid "Failed to remove \"%s\": %s"
 msgstr "לא ניתן למחוק את \"%s\": %s"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to d54f031afd8d327b55b4a501b1ffa61d45e6c4ee (commit)
   from a65be4c7c2882195451669dfb2283b3e052cc805 (commit)

commit d54f031afd8d327b55b4a501b1ffa61d45e6c4ee
Author: Yaron Shahrabani 
Date:   Fri Nov 5 10:10:51 2010 +0100

l10n: Updated Hebrew (he) translation to 100%

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

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

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

diff --git a/po/he.po b/po/he.po
index 6261de2..df2ec3b 100644
--- a/po/he.po
+++ b/po/he.po
@@ -72,11 +72,11 @@ msgstr "קטגוריות"
 
 #: ../src/xfce-appfinder-window.c:320
 msgid "C_lose after launch"
-msgstr "_סגירה לאחר השיגור"
+msgstr "_סגירה לאחר הטעינה"
 
 #: ../src/xfce-appfinder-window.c:328
 msgid "Launch"
-msgstr "שיגור"
+msgstr "טעינה"
 
 #: ../src/xfce-appfinder-window.c:458
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to df21b2bdde84209ceeaf0a3745f9ae473e62414f (commit)
   from 115b2ca5ef762b5e8b494c66bd638a1f2c6e8f3a (commit)

commit df21b2bdde84209ceeaf0a3745f9ae473e62414f
Author: Harald Servat 
Date:   Fri Nov 5 10:03:43 2010 +0100

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 |   10 --
 1 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 8d9ad63..519501f 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -629,7 +629,7 @@ msgstr "Error en la carpeta de l'escriptori"
 
 #: ../src/xfdesktop-file-icon-manager.c:503
 msgid "A normal file with the same name already exists. Please delete or 
rename it."
-msgstr ""
+msgstr "Ja existeix un fitxer amb el nom indicat. Elimineu-lo o canvieu-li el 
nom,"
 
 #: ../src/xfdesktop-file-icon-manager.c:606
 #: ../src/xfdesktop-file-icon-manager.c:650 ../src/xfdesktop-file-utils.c:799
@@ -649,9 +649,8 @@ msgstr "No s'ha pogut esborrar els fitxers seleccionats"
 #: ../src/xfdesktop-file-utils.c:975 ../src/xfdesktop-file-utils.c:1025
 #: ../src/xfdesktop-file-utils.c:1102 ../src/xfdesktop-file-utils.c:1163
 #: ../src/xfdesktop-file-utils.c:1236 ../src/xfdesktop-file-utils.c:1314
-#, fuzzy
 msgid "This feature requires a file manager service to be present (such as the 
one supplied by Thunar)."
-msgstr "Aquesta característica demana l'ajut d'un gestor de fitxers (com per 
exemple el que fa Thunar)."
+msgstr "Aquesta característica demana l'ajut d'un gestor de fitxers (com per 
exemple, el que proveeix el Thunar)."
 
 #. printf is to be translator-friendly
 #: ../src/xfdesktop-file-icon-manager.c:752
@@ -812,9 +811,8 @@ msgid "The selected files could not be moved to the trash"
 msgstr "No s'ha pogut moure a la paperera els fitxers seleccionats"
 
 #: ../src/xfdesktop-file-utils.c:816
-#, fuzzy
 msgid "This feature requires a trash service to be present (such as the one 
supplied by Thunar)."
-msgstr "Aquesta característica demana l'ajut d'un gestor de fitxers (com per 
exemple el que fa Thunar)."
+msgstr "Aquesta característica demana l'ajut del gestor de la paperera (com 
per exemple, el que proveeix el Thunar)."
 
 #: ../src/xfdesktop-file-utils.c:852 ../src/xfdesktop-file-utils.c:867
 msgid "Create File Error"
@@ -883,7 +881,7 @@ msgstr "Escrivint dades al dispositiu"
 #: ../src/xfdesktop-notify.c:110 ../src/xfdesktop-notify.c:223
 #, c-format
 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'ha d'escriure dades al dispositiu \"%s\" abans de ser expulsat. Si 
us plau, no expulseu ni desconnecteu el dispositiu."
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:211
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to a65be4c7c2882195451669dfb2283b3e052cc805 (commit)
   from 30b195e0b74c6b2d5883cee497bc56250d5ae92d (commit)

commit a65be4c7c2882195451669dfb2283b3e052cc805
Author: Yaron Shahrabani 
Date:   Fri Nov 5 10:01:58 2010 +0100

l10n: Updated Hebrew (he) translation to 100%

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

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

 po/he.po |   41 -
 1 files changed, 20 insertions(+), 21 deletions(-)

diff --git a/po/he.po b/po/he.po
index 23446d9..6261de2 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-appfinder 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-07-29 10:05+\n"
+"POT-Creation-Date: 2010-11-05 05:07+\n"
 "PO-Revision-Date: 2006-01-29 01:23+0200\n"
 "Last-Translator: Dotan Kamber \n"
 "Language-Team: Hebrew\n"
@@ -54,59 +54,58 @@ msgstr "Failed to connect to xfconf daemon. Reason: %s"
 msgid "Failed to connect to xfconf daemon."
 msgstr "Failed to connect to xfconf daemon."
 
-#: ../src/xfce-appfinder-window.c:225 ../data/xfce4-appfinder.desktop.in.h:1
+#: ../src/xfce-appfinder-window.c:217 ../data/xfce4-appfinder.desktop.in.h:1
 msgid "Application Finder"
 msgstr "כלי לחיפוש יישומים"
 
-#: ../src/xfce-appfinder-window.c:227 ../data/xfce4-appfinder.desktop.in.h:2
+#: ../src/xfce-appfinder-window.c:219 ../data/xfce4-appfinder.desktop.in.h:2
 msgid "Find and launch applications installed on your system"
 msgstr "חיפוש וטעינת יישומים המותקנים במחשבך"
 
-#: ../src/xfce-appfinder-window.c:250
+#: ../src/xfce-appfinder-window.c:242
 msgid "Search"
 msgstr "חיפוש"
 
-#: ../src/xfce-appfinder-window.c:278
+#: ../src/xfce-appfinder-window.c:270
 msgid "Categories"
 msgstr "קטגוריות"
 
-#: ../src/xfce-appfinder-window.c:328
+#: ../src/xfce-appfinder-window.c:320
 msgid "C_lose after launch"
 msgstr "_סגירה לאחר השיגור"
 
-#: ../src/xfce-appfinder-window.c:336
+#: ../src/xfce-appfinder-window.c:328
 msgid "Launch"
 msgstr "שיגור"
 
-#: ../src/xfce-appfinder-window.c:722
-#, c-format
-msgid "Could not execute application %s."
-msgstr "אין אפשרות להפעיל את היישום %s"
-
-#: ../src/xfce-appfinder-window.c:845
+#: ../src/xfce-appfinder-window.c:458
 #, c-format
 msgid "Could not load menu from %s"
 msgstr "לא ניתן לטעון את התפריט מ־%s"
 
-#: ../src/xfce-appfinder-window.c:848
-msgid "Could not load system menu"
-msgstr "לא ניתן לטעון את תפריט המערכת"
-
-#: ../src/xfce-appfinder-window.c:870 ../src/xfce-appfinder-window.c:877
-#: ../src/xfce-appfinder-window.c:1106
+#: ../src/xfce-appfinder-window.c:470 ../src/xfce-appfinder-window.c:477
+#: ../src/xfce-appfinder-window.c:1115
 msgid "All"
 msgstr "הכול"
 
-#: ../src/xfce-appfinder-window.c:944
+#: ../src/xfce-appfinder-window.c:793
+#, c-format
+msgid "Failed to execute command \"%s\"."
+msgstr "אין אפשרות להפעיל את הפקודה \"%s\"."
+
+#: ../src/xfce-appfinder-window.c:951
 #, c-format
 msgid "Categories: %s"
 msgstr "קטגוריות: %s"
 
-#: ../src/xfce-appfinder-window.c:955
+#: ../src/xfce-appfinder-window.c:962
 #, c-format
 msgid "Command: %s"
 msgstr "פקודה: %s"
 
+#~ msgid "Could not load system menu"
+#~ msgstr "לא ניתן לטעון את תפריט המערכת"
+
 #~ msgid "Xfce 4 Appfinder"
 #~ msgstr "מאתר היישומים של Xfce 4"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 115b2ca5ef762b5e8b494c66bd638a1f2c6e8f3a (commit)
   from bafbe019b43a656802987965ebd957cee3460793 (commit)

commit 115b2ca5ef762b5e8b494c66bd638a1f2c6e8f3a
Author: Harald Servat 
Date:   Fri Nov 5 10:00:51 2010 +0100

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index 11462db..8d9ad63 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -829,9 +829,8 @@ msgid "Create Document Error"
 msgstr "Error a la creació del document"
 
 #: ../src/xfdesktop-file-utils.c:909 ../src/xfdesktop-file-utils.c:924
-#, fuzzy
 msgid "Could not create a new document from the template"
-msgstr "Crea un document des de la plantilla «%s»"
+msgstr "No s'ha pogut crear un nou document a partir de la plantilla"
 
 #: ../src/xfdesktop-file-utils.c:958 ../src/xfdesktop-file-utils.c:973
 msgid "File Properties Error"
@@ -873,7 +872,7 @@ msgstr "Desmuntant el dispositiu"
 #: ../src/xfdesktop-notify.c:100
 #, c-format
 msgid "The device \"%s\" is being unmounted by the system. Please do not 
remove the media or disconnect the drive"
-msgstr ""
+msgstr "S'està desmuntant el dispositiu \"%s\" . Si us plau no extreieu ni 
desconnecteu el dispositiu."
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
 #: ../src/xfdesktop-notify.c:107 ../src/xfdesktop-notify.c:220
@@ -910,22 +909,21 @@ msgstr ""
 
 #: ../src/xfdesktop-special-file-icon.c:249
 #: ../src/xfdesktop-special-file-icon.c:411
-#, fuzzy
 msgid "File System"
 msgstr "Sistema de fitxers"
 
 #: ../src/xfdesktop-special-file-icon.c:396
 msgid "Trash is empty"
-msgstr ""
+msgstr "La paperera és buida"
 
 #: ../src/xfdesktop-special-file-icon.c:399
 msgid "Trash contains one item"
-msgstr ""
+msgstr "La paperera conté un element"
 
 #: ../src/xfdesktop-special-file-icon.c:400
 #, c-format
 msgid "Trash contains %d items"
-msgstr ""
+msgstr "La paperera conté %d elements"
 
 #: ../src/xfdesktop-special-file-icon.c:428
 #, c-format
@@ -934,6 +932,9 @@ msgid ""
 "Size: %s\n"
 "Last modified: %s"
 msgstr ""
+"%s\n"
+"Tamany: %s\n"
+"Darrera modificació: %s"
 
 #: ../src/xfdesktop-special-file-icon.c:449
 msgid "Unable to contact the Xfce Trash service."
@@ -948,39 +949,37 @@ msgid "_Empty Trash"
 msgstr "Buida la pap_erera"
 
 #: ../src/xfdesktop-volume-icon.c:413
-#, fuzzy, c-format
+#, c-format
 msgid ""
 "Removable Volume\n"
 "Mounted in \"%s\"\n"
 "%s left (%s total)"
 msgstr ""
-"Tipus: Dispositiu extractable\n"
-"Punt de muntatge: %s\n"
-"Espai lliure: %s"
+"Volum extraïble\n"
+"Muntat a \"%s\"\n"
+"%s lliure (%s en total)"
 
 #: ../src/xfdesktop-volume-icon.c:420
-#, fuzzy
 msgid ""
 "Removable Volume\n"
 "Not mounted yet"
 msgstr ""
-"Tipus: Dispositiu extractable\n"
-"Punt de muntatge: %s\n"
-"Espai lliure: %s"
+"Volum extraïble\n"
+"No muntat encara"
 
 #: ../src/xfdesktop-volume-icon.c:446 ../src/xfdesktop-volume-icon.c:488
-#, fuzzy, c-format
+#, c-format
 msgid "Failed to eject \"%s\""
-msgstr "No s'ha pogut expulsar «%s»:"
+msgstr "No s'ha pogut expulsar \"%s\""
 
 #: ../src/xfdesktop-volume-icon.c:451 ../src/xfdesktop-volume-icon.c:493
 msgid "Eject Failed"
 msgstr "No s'ha pogut expulsar"
 
 #: ../src/xfdesktop-volume-icon.c:525
-#, fuzzy, c-format
+#, c-format
 msgid "Failed to mount \"%s\""
-msgstr "No s'ha pogut executar «%s»:"
+msgstr "No s'ha pogut muntar \"%s\""
 
 #: ../src/xfdesktop-volume-icon.c:528
 msgid "Mount Failed"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to 1e7db083e3d83f751a111d8a35850d10010161fb (commit)
   from 9daeba6bfc5070d705ee6d0d3ead112af5aaf245 (commit)

commit 1e7db083e3d83f751a111d8a35850d10010161fb
Author: Masato Hashimoto 
Date:   Fri Nov 5 09:05:42 2010 +0100

l10n: Updated Japanese (ja) translation to 100%

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

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

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

diff --git a/po/ja.po b/po/ja.po
index a8248b5..0cd71d1 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-session 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 21:24+0900\n"
-"PO-Revision-Date: 2010-11-04 21:23+0900\n"
+"POT-Creation-Date: 2010-11-05 15:34+0900\n"
+"PO-Revision-Date: 2010-11-05 15:34+0900\n"
 "Last-Translator: Masato Hashimoto \n"
 "Language-Team: Japanese \n"
 "Language: ja\n"
@@ -970,7 +970,7 @@ msgstr "バージョン:"
 
 #: ../settings/xfce4-session-settings.glade.h:10
 msgid "Ad_vanced"
-msgstr "上級者(_V)"
+msgstr "詳細(_V)"
 
 #: ../settings/xfce4-session-settings.glade.h:11
 msgid "Always save the session when logging out"
@@ -1002,7 +1002,7 @@ msgstr "起動時に KDE サービスを起動する(_K)"
 
 #: ../settings/xfce4-session-settings.glade.h:19
 msgid "Manage _remote applications"
-msgstr "遠隔アプリケーションの管理(_R)"
+msgstr "遠隔アプリケーションを管理する(_R)"
 
 #: ../settings/xfce4-session-settings.glade.h:20
 msgid ""
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 97%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to db727a2c985f936cecac3ac63bf201b5c811fea3 (commit)
   from 8c036b8f3b9cfa82d68cdb2521423b1bf310cde4 (commit)

commit db727a2c985f936cecac3ac63bf201b5c811fea3
Author: Yaron Shahrabani 
Date:   Fri Nov 5 08:56:29 2010 +0100

l10n: Updated Hebrew (he) translation to 97%

New status: 665 messages complete with 3 fuzzies and 12 untranslated.

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

 po/he.po |  335 ++---
 1 files changed, 99 insertions(+), 236 deletions(-)

diff --git a/po/he.po b/po/he.po
index c0dba83..e5ade0c 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,19 +3,19 @@
 # This file is distributed under the same license as the thunar package.
 # Yo'av Moshe , 2006.
 # Yuval Tanny , 2006, 2007.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-04 14:35+0100\n"
+"POT-Creation-Date: 2010-11-05 05:10+\n"
 "PO-Revision-Date: 2007-01-20 14:29+0200\n"
 "Last-Translator: Yuval Tanny \n"
 "Language-Team: Hebrew \n"
-"Language: he\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: he\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: KBabel 1.11.4\n"
 
@@ -169,14 +169,12 @@ msgid "Create New Folder"
 msgstr "צור תיקייה חדשה"
 
 #: ../thunar/thunar-application.c:1325
-#, fuzzy
 msgid "New File"
-msgstr "תיקייה חדשה"
+msgstr "קובץ חדש"
 
 #: ../thunar/thunar-application.c:1326
-#, fuzzy
 msgid "Create New File"
-msgstr "צור תיקייה חדשה"
+msgstr "יצירת קובץ חדש"
 
 #. generate a title for the create dialog
 #: ../thunar/thunar-application.c:1384 ../thunar/thunar-standard-view.c:1870
@@ -261,12 +259,8 @@ msgid "_Empty Trash"
 msgstr "_פינוי סל המחזור"
 
 #: ../thunar/thunar-application.c:1874
-msgid ""
-"If you choose to empty the Trash, all items in it will be permanently lost. "
-"Please note that you can also delete them separately."
-msgstr ""
-"אם בחרת לרוקן את סל המחזור, כל הפריטים שבתוכו יאבדו לצמיתות. נא לשים לב "
-"שניתן למחוק כל אחד מהם בנפרד."
+msgid "If you choose to empty the Trash, all items in it will be permanently 
lost. Please note that you can also delete them separately."
+msgstr "אם בחרת לרוקן את סל המחזור, כל הפריטים שבתוכו יאבדו לצמיתות. נא לשים 
לב שניתן למחוק כל אחד מהם בנפרד."
 
 #: ../thunar/thunar-application.c:1891
 msgid "Emptying the Trash..."
@@ -299,8 +293,7 @@ msgstr "לא נבחר יישום"
 
 #: ../thunar/thunar-chooser-button.c:313
 #, c-format
-msgid ""
-"The selected application is used to open this and other files of type \"%s\"."
+msgid "The selected application is used to open this and other files of type 
\"%s\"."
 msgstr "היישום הנבחר ישמש לפתיחת קובץ זה וקבצים אחרים מסוג \"%s\"."
 
 #. add the "Other Application..." choice
@@ -318,9 +311,7 @@ msgid "Use a _custom command:"
 msgstr "שימוש בפקודה _מותאמת אישית:"
 
 #: ../thunar/thunar-chooser-dialog.c:258
-msgid ""
-"Use a custom command for an application that is not available from the above "
-"application list."
+msgid "Use a custom command for an application that is not available from the 
above application list."
 msgstr "שימוש בפקודה מותאמת אישית עבור יישום שלא נמצא ברשימת היישומים שלמעלה."
 
 #. create the "Custom command" button
@@ -357,15 +348,12 @@ msgstr "פתיחת %s וקבצים אחרים מסוג \"%s\" באמצע
 
 #: ../thunar/thunar-chooser-dialog.c:657
 #, c-format
-msgid ""
-"Browse the file system to select an application to open files of type \"%s\"."
+msgid "Browse the file system to select an application to open files of type 
\"%s\"."
 msgstr "עיון במערכת הקבצים כדי לבחור ביישום שישמש לפתיחת קבצים מסוג \"%s\"."
 
 #: ../thunar/thunar-chooser-dialog.c:663
 #, c-format
-msgid ""
-"Change the default application for files of type \"%s\" to the selected "
-"application."
+msgid "Change the default application for files of type \"%s\" to the selected 
application."
 msgstr "החלפת יישום ברירת המחדל של קבצים מסוג \"%s\" ליישום הנבחר."
 
 #: ../thunar/thunar-chooser-dialog.c:710
@@ -375,17 +363,13 @@ msgstr "האם ברצונך למחוק את \"%s\"/"
 
 #: ../thunar/thunar-chooser-dialog.c:716
 msgid ""
-"This will remove the application launcher that appears in the file context "
-"menu, but will not uninstall the application itself.\n"
+"This will remove the application launcher that appears in the file context 
menu, but will not uninstall the application itself.\n"
 "\n"
-"You can only remove application launchers that were created using the custom "
-"command box in the \"Open With\" dialog of the file manager."
+"You can only remove application launchers that were created using the custom 
command box in the \"Open With\" dialog of the file manager."
 msgstr ""
-"פעולה זו תסיר את משגר היישום שמוצג בתפריט ההקשר של קובץ, אבל לא תסיר את "
-"היישום עצמו.\n"
+"פעולה זו תסיר את משגר היישום שמוצג בתפריט ההקשר של קובץ, אבל לא תסיר את 
היישום עצמו.\n"
 "\n"
-"ניתן להסיר אך ו

[Xfce4-commits] l10n: Updated Hebrew (he) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to b7f425fe53ae51a492b6eb1ecd08465d8dcff362 (commit)
   from a88433f3932d034ff174ad568e72427bec57c637 (commit)

commit b7f425fe53ae51a492b6eb1ecd08465d8dcff362
Author: Yaron Shahrabani 
Date:   Fri Nov 5 08:50:06 2010 +0100

l10n: Updated Hebrew (he) translation to 100%

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

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

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

diff --git a/po/he.po b/po/he.po
index 3a4dbd6..50d9906 100644
--- a/po/he.po
+++ b/po/he.po
@@ -430,7 +430,7 @@ msgstr "ה_סרת סרגל כלים"
 
 #: ../exo/exo-toolbars-view.c:818
 msgid "Customize Toolbar..."
-msgstr "התאם סרגל כלים..."
+msgstr "התאמת סרגל הכלים..."
 
 #: ../exo/exo-wrap-table.c:148
 msgid "Column spacing"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to a88433f3932d034ff174ad568e72427bec57c637 (commit)
   from fb9d0269a6daee169234d64cbd1e85432f3d5cc6 (commit)

commit a88433f3932d034ff174ad568e72427bec57c637
Author: Yaron Shahrabani 
Date:   Fri Nov 5 08:49:29 2010 +0100

l10n: Updated Hebrew (he) translation to 100%

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

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

 po/he.po |   20 ++--
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/po/he.po b/po/he.po
index e413b63..3a4dbd6 100644
--- a/po/he.po
+++ b/po/he.po
@@ -55,22 +55,22 @@ msgstr "גודל הסמל להצגה בפיקסלים."
 #: ../exo/exo-gdk-pixbuf-extensions.c:787
 #, c-format
 msgid "Failed to open file \"%s\": %s"
-msgstr "ארע כשל בפתיחת הקובץ \"%s\": %s"
+msgstr "אירע כשל בפתיחת הקובץ \"%s\": %s"
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:849
 #, c-format
 msgid "Failed to read file \"%s\": %s"
-msgstr "ארע כשל בקריאת הקובץ \"%s\": %s"
+msgstr "אירע כשל בקריאת הקובץ \"%s\": %s"
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
 msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image 
file"
-msgstr "ארע כשל בטעינת התמונה \"%s\": סיבה לא ידועה, כנראה התמונה פגומה"
+msgstr "אירע כשל בטעינת התמונה \"%s\": סיבה לא ידועה, כנראה התמונה פגומה"
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
 msgid "Failed to open \"%s\"."
-msgstr "ארע כשל בפתיחת \"%s\"."
+msgstr "אירע כשל בפתיחת \"%s\"."
 
 #: ../exo/exo-icon-bar.c:277 ../exo/exo-icon-view.c:776
 msgid "Orientation"
@@ -86,7 +86,7 @@ msgstr "עמודת Pixbuf"
 
 #: ../exo/exo-icon-bar.c:295 ../exo/exo-icon-view.c:794
 msgid "Model column used to retrieve the icon pixbuf from"
-msgstr "עמודת דוגמה לאיחזור ה־Pixbuf של הסמל"
+msgstr "עמודת דוגמה לאחזור ה־Pixbuf של הסמל"
 
 #: ../exo/exo-icon-bar.c:310 ../exo/exo-icon-view.c:920
 msgid "Text column"
@@ -94,7 +94,7 @@ msgstr "עמודת כיתוב"
 
 #: ../exo/exo-icon-bar.c:311 ../exo/exo-icon-view.c:921
 msgid "Model column used to retrieve the text from"
-msgstr "עמודת דוגמה המשמשת לאיחזור הכיתוב"
+msgstr "עמודת דוגמה המשמשת לאחזור הכיתוב"
 
 #: ../exo/exo-icon-bar.c:323
 msgid "Icon Bar Model"
@@ -169,7 +169,7 @@ msgstr "סמלונים"
 #. EXO_ICON_CHOOSER_CONTEXT_EMOTES
 #: ../exo/exo-icon-chooser-dialog.c:121
 msgid "Emoticons"
-msgstr "אייקונים"
+msgstr "רגשונים"
 
 #. EXO_ICON_CHOOSER_CONTEXT_INTERNATIONAL
 #: ../exo/exo-icon-chooser-dialog.c:123
@@ -204,7 +204,7 @@ msgstr "כל הסמלים"
 #. EXO_ICON_CHOOSER_CONTEXT_FILE
 #: ../exo/exo-icon-chooser-dialog.c:139 ../exo/exo-icon-chooser-dialog.c:285
 msgid "Image Files"
-msgstr "קבצי תמונות"
+msgstr "קובצי תמונה"
 
 #. setup the context combo box
 #: ../exo/exo-icon-chooser-dialog.c:210
@@ -274,7 +274,7 @@ msgstr "עמודת סימון"
 
 #: ../exo/exo-icon-view.c:748
 msgid "Model column used to retrieve the text if using Pango markup"
-msgstr "עמודת דוגמה המשתמש לאיחזור הכיתוב אם נעשה שימוש ב־Pango"
+msgstr "עמודת דוגמה המשתמש לאחזור הכיתוב אם נעשה שימוש ב־Pango"
 
 #: ../exo/exo-icon-view.c:762
 msgid "Icon View Model"
@@ -294,7 +294,7 @@ msgstr "בר סידור מחדש"
 
 #: ../exo/exo-icon-view.c:810
 msgid "View is reorderable"
-msgstr "התצוגה ברת סידור מחדש"
+msgstr "התצוגה ניתנת לסידור מחדש"
 
 #: ../exo/exo-icon-view.c:825
 msgid "Row Spacing"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Hebrew (he) translation to 100%

2010-11-05 Thread Transifex
Updating branch refs/heads/master
 to fb9d0269a6daee169234d64cbd1e85432f3d5cc6 (commit)
   from c3d20385dc8c11191547de7fb716fb5d8726ad77 (commit)

commit fb9d0269a6daee169234d64cbd1e85432f3d5cc6
Author: Yaron Shahrabani 
Date:   Fri Nov 5 08:47:07 2010 +0100

l10n: Updated Hebrew (he) translation to 100%

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

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

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

diff --git a/po/he.po b/po/he.po
index 9499481..e413b63 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: exo 0.3.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-17 04:00+\n"
+"POT-Creation-Date: 2010-11-05 05:00+\n"
 "PO-Revision-Date: 2007-01-19 14:50+0200\n"
 "Last-Translator: Yuval Tanny \n"
 "Language-Team: Hebrew\n"
@@ -1171,6 +1171,10 @@ msgstr "דפדפן האינטרנט Galeon"
 msgid "GNOME Terminal"
 msgstr "GNOME Terminal"
 
+#: ../exo-helper/helpers/icedove.desktop.in.in.h:1
+msgid "Icedove"
+msgstr "Icedove"
+
 #: ../exo-helper/helpers/kmail.desktop.in.in.h:1
 msgid "KMail"
 msgstr "KMail"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits