[Xfce4-commits] Clear content before showing it after it was hidden

2010-12-19 Thread Christian Dywan
Updating branch refs/heads/master
 to 94c54b2b6ccadff8a88c8eb79500cfe79695f7b6 (commit)
   from 9dec57c8c40b625f45d4f9658692a806da33aa64 (commit)

commit 94c54b2b6ccadff8a88c8eb79500cfe79695f7b6
Author: Christian Dywan 
Date:   Mon Dec 20 02:14:44 2010 +0100

Clear content before showing it after it was hidden

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

diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index b630474..ba24b9d 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -693,8 +693,10 @@ public class Postler.Bureau : Gtk.Window {
 viewer.hide ();
 });
 messages.notify["selected-location"].connect ((object, pspec) => {
-if (messages.selected_location != null)
+if (messages.selected_location != null) {
+content.clear ();
 viewer.show ();
+}
 });
 vpaned.pack2 (viewer, false, true);
 shelf.show_all ();
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Don't show buttons for multipart parts

2010-12-19 Thread Christian Dywan
Updating branch refs/heads/master
 to 9dec57c8c40b625f45d4f9658692a806da33aa64 (commit)
   from cd2374317d5993c983c6f90f85d13083c3b9ef1b (commit)

commit 9dec57c8c40b625f45d4f9658692a806da33aa64
Author: Christian Dywan 
Date:   Mon Dec 20 01:51:58 2010 +0100

Don't show buttons for multipart parts

Fixes: https://bugs.launchpad.net/postler/+bug/692072

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

diff --git a/postler/postler-viewer.vala b/postler/postler-viewer.vala
index 36e23dc..3f9b40b 100644
--- a/postler/postler-viewer.vala
+++ b/postler/postler-viewer.vala
@@ -110,6 +110,9 @@ public class Postler.Viewer : Gtk.VBox {
 foreach (var child in children)
 child.destroy ();
 foreach (var part in content.message_parts) {
+if (part.mime_type.has_prefix ("multipart/"))
+continue;
+
 string icon_name = icon_name_for_mime_type (part.mime_type, this);
 var icon = new Gtk.Image.from_icon_name (icon_name,
  Gtk.IconSize.BUTTON);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Non-fatal, concrete message when selecting folder

2010-12-19 Thread Christian Dywan
Updating branch refs/heads/master
 to cd2374317d5993c983c6f90f85d13083c3b9ef1b (commit)
   from ae097398981cf2c4459f6a258e1412211f8a1dcd (commit)

commit cd2374317d5993c983c6f90f85d13083c3b9ef1b
Author: Christian Dywan 
Date:   Mon Dec 20 01:32:45 2010 +0100

Non-fatal, concrete message when selecting folder

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

diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index d6c1646..0e1c0cc 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -304,7 +304,8 @@ public class Postler.Folders : Gtk.TreeView {
 msg.move (destination, FileCopyFlags.NONE);
 }
 } catch (Error error) {
-GLib.error (error.message);
+GLib.warning (_("Failed to select folder \"%s\": %s"),
+location, error.message);
 }
 }
 else
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Label inbox generically if there's only one account

2010-12-19 Thread Christian Dywan
Updating branch refs/heads/master
 to ae097398981cf2c4459f6a258e1412211f8a1dcd (commit)
   from 8bb2de9cac1a555309d3330289600bf55a1b405a (commit)

commit ae097398981cf2c4459f6a258e1412211f8a1dcd
Author: Christian Dywan 
Date:   Mon Dec 20 01:22:15 2010 +0100

Label inbox generically if there's only one account

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

diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index 50f4b79..d6c1646 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -204,14 +204,18 @@ public class Postler.Folders : Gtk.TreeView {
 account_info.path + "/" + name + "/new");
 var monitor = msg_dir.monitor_directory (0, null);
 string path = store.get_string_from_iter 
(account_iter);
+string label = account_info.name;
+if (infos.length () < 2)
+label = _("Inbox");
 monitor.changed.connect ((monitor, file, other, event) 
=> {
-unread_monitor_changed (msg_dir, path, 
account_info.name);
+unread_monitor_changed (msg_dir, path, label);
 });
-unread_monitor_changed (msg_dir, path, 
account_info.name);
+unread_monitor_changed (msg_dir, path, label);
 
 account_info.folders[FolderType.INBOX] = name;
 store.set (account_iter,
 Columns.ICON, STOCK_INBOX,
+Columns.NAME, label,
 Columns.LOCATION, account_info.path + "/" + name,
 Columns.UNREAD_MONITOR, monitor);
 continue;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Display number of unread messages in all folders

2010-12-19 Thread Christian Dywan
Updating branch refs/heads/master
 to 853f47cc644c411732d093ae90da6513dd2f2f99 (commit)
   from 9be37e4509d5c5767041274c7a1fc8800cd47e7b (commit)

commit 853f47cc644c411732d093ae90da6513dd2f2f99
Author: Christian Dywan 
Date:   Mon Dec 20 01:11:18 2010 +0100

Display number of unread messages in all folders

Fixes: https://bugs.launchpad.net/postler/+bug/691831

 postler/postler-folders.vala |   22 +-
 1 files changed, 9 insertions(+), 13 deletions(-)

diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index b7f885f..76f0e95 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -240,20 +240,16 @@ public class Postler.Folders : Gtk.TreeView {
 Columns.ELLIPSIZE, Pango.EllipsizeMode.MIDDLE,
 Columns.LOCATION, account_info.path + "/" + name,
 Columns.INFO, account_info,
-Columns.FOLDER_MONITOR, monitor);
-
-if (folder.role == "Queue") {
-var msg_dir = folder_dir.resolve_relative_path (
-account_info.path + "/" + name + "/new");
-monitor = msg_dir.monitor_directory (0, null);
-string path = store.get_string_from_iter (folder_iter);
-monitor.changed.connect ((monitor, file, other, event) 
=> {
-unread_monitor_changed (msg_dir, path, 
folder.label ?? folder_name);
-});
+Columns.FOLDER_MONITOR, monitor,
+Columns.UNREAD_MONITOR, monitor);
+var msg_dir = folder_dir.resolve_relative_path (
+account_info.path + "/" + name + "/new");
+monitor = msg_dir.monitor_directory (0, null);
+string path = store.get_string_from_iter (folder_iter);
+monitor.changed.connect ((monitor, file, other, event) => {
 unread_monitor_changed (msg_dir, path, folder.label ?? 
folder_name);
-store.set (folder_iter,
-   Columns.UNREAD_MONITOR, monitor);
-}
+});
+unread_monitor_changed (msg_dir, path, folder.label ?? 
folder_name);
 }
 
 Gtk.TreeIter folder_iter = new Gtk.TreeIter ();
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Create missing special folders if needed

2010-12-19 Thread Christian Dywan
Updating branch refs/heads/master
 to 8bb2de9cac1a555309d3330289600bf55a1b405a (commit)
   from 853f47cc644c411732d093ae90da6513dd2f2f99 (commit)

commit 8bb2de9cac1a555309d3330289600bf55a1b405a
Author: Christian Dywan 
Date:   Mon Dec 20 01:18:03 2010 +0100

Create missing special folders if needed

 postler/postler-folders.vala |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index 76f0e95..50f4b79 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -113,7 +113,6 @@ public class Postler.Folders : Gtk.TreeView {
 continue;
 }
 
-bool incomplete = account_info.get_folder (FolderType.SENT) == 
null;
 try {
 var folder_dir = File.new_for_path (account_info.path);
 
@@ -252,6 +251,7 @@ public class Postler.Folders : Gtk.TreeView {
 unread_monitor_changed (msg_dir, path, folder.label ?? 
folder_name);
 }
 
+/* Look for missing special folders or create them */
 Gtk.TreeIter folder_iter = new Gtk.TreeIter ();
 account_info.verify_folders ((type, folder) => {
 if (get_folder_iter (account_info.path + "/" + folder.role,
@@ -260,10 +260,10 @@ public class Postler.Folders : Gtk.TreeView {
 store.set (folder_iter,
Columns.ICON, folder.stock_id ?? 
Gtk.STOCK_DIRECTORY,
Columns.NAME, folder.label);
-}
+need_update = true;
+} else
+DirUtils.create (account_info.path + "/" + 
folder.role, 0700);
 });
-if (incomplete)
-need_update = true;
 
 expand_row (store.get_path (account_iter), false);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Kazakh (kk) translation to 100%

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 9dcea09f3eaea42ce9e89a034419a0d5df89e900 (commit)
   from d2b0cf068cd01762ec812b04fd839b83e6008889 (commit)

commit 9dcea09f3eaea42ce9e89a034419a0d5df89e900
Author: Bauzhan Muftakhidinov 
Date:   Mon Dec 20 04:48:05 2010 +0100

l10n: Updated Kazakh (kk) translation to 100%

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

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

 po/kk.po |  111 --
 1 files changed, 57 insertions(+), 54 deletions(-)

diff --git a/po/kk.po b/po/kk.po
index d639c6c..95dbb55 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-30 23:08+\n"
+"POT-Creation-Date: 2010-12-19 23:09+\n"
 "PO-Revision-Date: 2010-08-03 09:46+0600\n"
 "Last-Translator: Baurzhan Muftakhidinov \n"
 "Language-Team: Kazakh \n"
@@ -30,7 +30,7 @@ msgid "Customize the panel"
 msgstr "Панельді баптау"
 
 #: ../panel-preferences.desktop.in.h:2
-#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2198
+#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2200
 #: ../migrate/main.c:84
 msgid "Panel"
 msgstr "Панель"
@@ -53,38 +53,38 @@ msgid "Failed to open the documentation browser"
 msgstr "Құжаттама шолушысын ашу сәтсіз аяқталды"
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:873
-#: ../panel/panel-preferences-dialog.c:1029
+#: ../libxfce4panel/xfce-panel-plugin.c:887
+#: ../panel/panel-preferences-dialog.c:1048
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "\"%s\" өшіруді шынымен қалайсыз ба?"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:878
-#: ../panel/panel-preferences-dialog.c:1032
+#: ../libxfce4panel/xfce-panel-plugin.c:892
+#: ../panel/panel-preferences-dialog.c:1051
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Элементті панельден өшірсеңіз, ол толығымен жойылады."
 
 #. move item
-#: ../libxfce4panel/xfce-panel-plugin.c:1038
+#: ../libxfce4panel/xfce-panel-plugin.c:1052
 msgid "_Move"
 msgstr "Ж_ылжыту"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1072
+#: ../libxfce4panel/xfce-panel-plugin.c:1086
 msgid "Pane_l"
 msgstr "Пане_ль"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1080 ../panel/panel-window.c:2210
+#: ../libxfce4panel/xfce-panel-plugin.c:1094 ../panel/panel-window.c:2212
 msgid "Add _New Items..."
 msgstr "Жаңа _элементтерді қосу..."
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1091 ../panel/panel-window.c:2221
+#: ../libxfce4panel/xfce-panel-plugin.c:1105 ../panel/panel-window.c:2223
 msgid "Panel Pr_eferences..."
 msgstr "Панель ба_птаулары..."
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1108 ../panel/panel-window.c:2237
+#: ../libxfce4panel/xfce-panel-plugin.c:1122 ../panel/panel-window.c:2239
 msgid "Log _Out"
 msgstr "Жүйеден ш_ығу"
 
@@ -192,19 +192,19 @@ msgstr "Панельді іске қосуды қалайсыз ба? Олай 
 msgid "No running instance of %s was found"
 msgstr "%s үшін қосулы тұрған нұсқалары табылмады"
 
-#: ../panel/panel-application.c:197
+#: ../panel/panel-application.c:196
 msgid "Failed to launch the migration application"
 msgstr "Көшу қолданбасын жөнелту сәтсіз аяқталды"
 
-#: ../panel/panel-application.c:1429 ../plugins/actions/actions.c:413
+#: ../panel/panel-application.c:1423 ../plugins/actions/actions.c:413
 msgid "You have started X without session manager. Clicking Quit will close 
the X server."
 msgstr "X серверін сессия басқарушысыз іске қосқансыз. Шығу басылған кезде X 
сервері өз жұмысын аяқтайды."
 
-#: ../panel/panel-application.c:1430 ../plugins/actions/actions.c:414
+#: ../panel/panel-application.c:1424 ../plugins/actions/actions.c:414
 msgid "Are you sure you want to quit the panel?"
 msgstr "Панельдің жұмысын аяқтауды шынымен қалайсыз ба?"
 
-#: ../panel/panel-application.c:1438 ../plugins/actions/actions.c:422
+#: ../panel/panel-application.c:1432 ../plugins/actions/actions.c:422
 #, c-format
 msgid "Failed to execute command \"%s\""
 msgstr "\"%s\" командасын орындау сәтсіз аяқталды"
@@ -236,7 +236,7 @@ msgid "Please choose a panel for the new plugin:"
 msgstr "Жаңа плагин үшін панельді тандаңыз:"
 
 #. I18N: panel combo box in the preferences dialog
-#: ../panel/panel-dialogs.c:147 ../panel/panel-preferences-dialog.c:754
+#: ../panel/panel-dialogs.c:147 ../panel/panel-preferences-dialog.c:767
 #, c-format
 msgid "Panel %d"
 msgstr "Панель %d"
@@ -276,41 +276,41 @@ msgstr "\"%s\" плагині күтпегенде панельден кетті
 msgid "The plugin restarted more than once in the last %d seconds. If you 
press Execute the panel will try to restart the plugin otherwise it will be 
permanently removed from the panel."
 msgstr "Плагин соңғы %d секундта бірден көп рет қайта қосылған. Орындау 
батырмасын бассаңыз, панель ол плагинді 

[Xfce4-commits] l10n: Added Swedish translation

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to ebccf6586a6fb8599c8d42d7ec32252a480fb749 (commit)
   from d97f0e379c2b912f6c287fe0a161809017550e48 (commit)

commit ebccf6586a6fb8599c8d42d7ec32252a480fb749
Author: Daniel Nylander 
Date:   Mon Dec 20 00:08:40 2010 +0100

l10n: Added Swedish translation

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

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

 doc/po/{Terminal.pot => sv.po} |  308 ++--
 1 files changed, 171 insertions(+), 137 deletions(-)

diff --git a/doc/po/Terminal.pot b/doc/po/sv.po
similarity index 91%
copy from doc/po/Terminal.pot
copy to doc/po/sv.po
index 701e45e..07de359 100644
--- a/doc/po/Terminal.pot
+++ b/doc/po/sv.po
@@ -1,65 +1,76 @@
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: Terminal doc\n"
 "POT-Creation-Date: 2010-01-29 11:29+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
+"PO-Revision-Date: 2010-12-20 00:06+0100\n"
+"Last-Translator: Daniel Nylander \n"
+"Language-Team: Swedish \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ./Terminal.1.xml:14(contrib) ./Terminal.1.xml:22(contrib)
+#: ./Terminal.1.xml:14(contrib)
+#: ./Terminal.1.xml:22(contrib)
 msgid "Developer"
-msgstr ""
+msgstr "Utvecklare"
 
-#: ./Terminal.1.xml:15(firstname) ./Terminal.xml:63(firstname)
+#: ./Terminal.1.xml:15(firstname)
+#: ./Terminal.xml:63(firstname)
 msgid "Nick"
-msgstr ""
+msgstr "Nick"
 
-#: ./Terminal.1.xml:16(surname) ./Terminal.xml:64(surname)
+#: ./Terminal.1.xml:16(surname)
+#: ./Terminal.xml:64(surname)
 msgid "Schermer"
-msgstr ""
+msgstr "Schermer"
 
-#: ./Terminal.1.xml:18(email) ./Terminal.xml:66(email)
+#: ./Terminal.1.xml:18(email)
+#: ./Terminal.xml:66(email)
 msgid "n...@xfce.org"
-msgstr ""
+msgstr "n...@xfce.org"
 
-#: ./Terminal.1.xml:23(firstname) ./Terminal.xml:44(firstname)
+#: ./Terminal.1.xml:23(firstname)
+#: ./Terminal.xml:44(firstname)
 msgid "Benedikt"
-msgstr ""
+msgstr "Benedikt"
 
-#: ./Terminal.1.xml:24(surname) ./Terminal.xml:45(surname)
+#: ./Terminal.1.xml:24(surname)
+#: ./Terminal.xml:45(surname)
 msgid "Meurer"
-msgstr ""
+msgstr "Meurer"
 
-#: ./Terminal.1.xml:26(jobtitle) ./Terminal.xml:47(jobtitle)
+#: ./Terminal.1.xml:26(jobtitle)
+#: ./Terminal.xml:47(jobtitle)
 msgid "Software developer"
-msgstr ""
+msgstr "Programutvecklare"
 
-#: ./Terminal.1.xml:27(orgname) ./Terminal.xml:23(holder) 
./Terminal.xml:48(orgname)
+#: ./Terminal.1.xml:27(orgname)
+#: ./Terminal.xml:23(holder)
+#: ./Terminal.xml:48(orgname)
 msgid "os-cillation"
-msgstr ""
+msgstr "os-cillation"
 
-#: ./Terminal.1.xml:28(orgdiv) ./Terminal.xml:49(orgdiv)
+#: ./Terminal.1.xml:28(orgdiv)
+#: ./Terminal.xml:49(orgdiv)
 msgid "System development"
-msgstr ""
+msgstr "Systemutveckling"
 
-#: ./Terminal.1.xml:29(email) ./Terminal.xml:50(email)
+#: ./Terminal.1.xml:29(email)
+#: ./Terminal.xml:50(email)
 msgid "be...@xfce.org"
-msgstr ""
+msgstr "be...@xfce.org"
 
 #: ./Terminal.1.xml:37(manvolnum)
 msgid "1"
-msgstr ""
+msgstr "1"
 
 #: ./Terminal.1.xml:39(refmiscinfo)
 msgid "Xfce"
-msgstr ""
+msgstr "Xfce"
 
 #: ./Terminal.1.xml:44(refpurpose)
 msgid "A Terminal emulator for X"
-msgstr ""
+msgstr "En terminalemulator för X"
 
 #: ./Terminal.1.xml:48(title)
 msgid "Synopsis"
@@ -67,21 +78,23 @@ msgstr ""
 
 #: ./Terminal.1.xml:50(command)
 msgid "Terminal"
-msgstr ""
+msgstr "Terminal"
 
 #: ./Terminal.1.xml:51(arg)
 msgid "OPTION"
-msgstr ""
+msgstr "FLAGGA"
 
 #: ./Terminal.1.xml:56(title)
 msgid "Description"
-msgstr ""
+msgstr "Beskrivning"
 
-#: ./Terminal.1.xml:57(para) ./Terminal.xml:93(para)
+#: ./Terminal.1.xml:57(para)
+#: ./Terminal.xml:93(para)
 msgid "@PACKAGE_NAME@ is what is known as an X terminal emulator, often 
referred to as terminal or shell. It provides an equivalent to the 
old-fashioned text screen on your desktop, but one which can easily share the 
screen with other graphical applications. Windows users may already be familiar 
with the MS-DOS Prompt utility, which has the analogous function of offering a 
DOS command-line under Windows, though one should note that the UNIX CLI offer 
far more power and ease of use than does DOS."
 msgstr ""
 
-#: ./Terminal.1.xml:67(para) ./Terminal.xml:103(para)
+#: ./Terminal.1.xml:67(para)
+#: ./Terminal.xml:103(para)
 msgid "@PACKAGE_NAME@ emulates the xterm 
application developed by the X Consortium. In turn, the 
xterm application emulates the DEC VT102 terminal 
and also supports the DEC VT220 escape sequences. An escape sequence is a 
series of characters that start with the Esc character. 
@PACKAGE_NAME@ accepts all of the escape sequences that the VT102 and VT220 
terminals use for functions such as to position the cursor and to clear the 
screen."
 msgstr ""
 
@@ -97,15 +110,17 @@ msgstr ""
 msgid "Here is a summary of all t

[Xfce4-commits] l10n: Added Swedish translation

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to bae6ec6318d3636c9a67bc062b2a320935173b7e (commit)
   from c79fec46a96ac291cd95f5086f9bf2f95218b6ee (commit)

commit bae6ec6318d3636c9a67bc062b2a320935173b7e
Author: Daniel Nylander 
Date:   Mon Dec 20 00:09:01 2010 +0100

l10n: Added Swedish translation

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

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

 po-doc/{xfce4-screenshooter.pot => sv.po} |   45 +++--
 1 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/po-doc/xfce4-screenshooter.pot b/po-doc/sv.po
similarity index 93%
copy from po-doc/xfce4-screenshooter.pot
copy to po-doc/sv.po
index ae2e880..aed8999 100644
--- a/po-doc/xfce4-screenshooter.pot
+++ b/po-doc/sv.po
@@ -1,10 +1,10 @@
 msgid ""
 msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: xfce4-screenshooter doc\n"
 "POT-Creation-Date: 2009-11-15 00:21+0100\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
+"PO-Revision-Date: 2010-12-20 00:07+0100\n"
+"Last-Translator: Daniel Nylander \n"
+"Language-Team: Swedish \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -13,25 +13,25 @@ msgstr ""
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:97(None)
 msgid "@@image: 'images/xfce4-screenshooter-dialog1.png'; 
md5=ceb772964fa6ca07e5a09b9b9962ed18"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-dialog1.png'; 
md5=ceb772964fa6ca07e5a09b9b9962ed18"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:169(None)
 msgid "@@image: 'images/xfce4-screenshooter-dialog2.png'; 
md5=fa48885f54ca6ab5dfc980fb216025e0"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-dialog2.png'; 
md5=fa48885f54ca6ab5dfc980fb216025e0"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:260(None)
 msgid "@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=c8102c88e978eb7ef63994f2648f5ae6"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=c8102c88e978eb7ef63994f2648f5ae6"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:289(None)
 msgid "@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=468def960a376d5a856f2fcb3b35daf1"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=468def960a376d5a856f2fcb3b35daf1"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:12(title)
 msgid "Xfce4 Screenshooter"
@@ -39,19 +39,20 @@ msgstr ""
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:17(year)
 msgid "2008"
-msgstr ""
+msgstr "2008"
 
-#: ../docs/manual/C/xfce4-screenshooter.xml.in:18(year) 
../docs/manual/C/xfce4-screenshooter.xml.in:23(year)
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:18(year)
+#: ../docs/manual/C/xfce4-screenshooter.xml.in:23(year)
 msgid "2009"
-msgstr ""
+msgstr "2009"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:19(holder)
 msgid "Jérôme Guelfucci"
-msgstr ""
+msgstr "Jérôme Guelfucci"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:24(holder)
 msgid "Sam Swift"
-msgstr ""
+msgstr "Sam Swift"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:28(para)
 msgid "Permission is granted to copy, distribute and/or modify this document 
under the terms of the GNU Free Documentation License, Version 1.1 or any later 
version published by the Free Software Foundation; with no Invariant Sections, 
with no Front-Cover Texts, and with no Back-Cover Texts. The complete license 
text is available from the http://www.gnu.org/\";>Free Software Foundation."
@@ -59,27 +60,27 @@ msgstr ""
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:40(firstname)
 msgid "Jérôme"
-msgstr ""
+msgstr "Jérôme"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:41(surname)
 msgid "Guelfucci"
-msgstr ""
+msgstr "Guelfucci"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:43(email)
 msgid "jero...@xfce.org"
-msgstr ""
+msgstr "jero...@xfce.org"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:47(firstname)
 msgid "Sam"
-msgstr ""
+msgstr "Sam"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:48(surname)
 msgid "Swift"
-msgstr ""
+msgstr "Swift"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:50(email)
 msgid "renm...@gmail.com"
-msgstr ""
+msgstr "renm...@gmail.com"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:55(releaseinfo)
 msgid "This manual describes version @PACKAGE_VERSION@ 

[Xfce4-commits] l10n: Updated Swedish (sv) translation to 92%

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 0c33c1bfff7b38dc940fdfc9d1d933a6ebacc22f (commit)
   from 9fe5617aa5c8e5264d1b4fe4191c1be547383ca4 (commit)

commit 0c33c1bfff7b38dc940fdfc9d1d933a6ebacc22f
Author: Daniel Nylander 
Date:   Sun Dec 19 23:56:41 2010 +0100

l10n: Updated Swedish (sv) translation to 92%

New status: 50 messages complete with 1 fuzzy and 3 untranslated.

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

 po/sv.po |  174 --
 1 files changed, 101 insertions(+), 73 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index 48bb88c..77bc0c8 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2008, 2009 Free Software Foundation, Inc.
 # This file is distributed under the same license as the xfce4-notes-plugin 
package.
 # Daniel Nylander , 2008, 2009.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-notes-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-10-18 16:03+\n"
+"POT-Creation-Date: 2010-12-19 17:03+\n"
 "PO-Revision-Date: 2010-10-18 20:31+0100\n"
 "Last-Translator: Daniel Nylander \n"
 "Language-Team: Swedish \n"
@@ -18,63 +18,70 @@ msgstr ""
 #: ../src/xfce4-notes.desktop.in.h:1
 #: ../src/xfce4-notes-autostart.desktop.in.h:1
 #: ../src/xfce4-notes-plugin.desktop.in.in.h:1
-#: ../src/xfce4-notes-plugin-47.desktop.in.h:1
-#: ../lib/application.vala:559
+#: ../src/xfce4-notes-plugin-47.desktop.in.h:1 ../lib/application.vala:611
 msgid "Ideal for your quick notes"
 msgstr "Perfekt för dina snabba anteckningar"
 
 #: ../src/xfce4-notes.desktop.in.h:2
 #: ../src/xfce4-notes-autostart.desktop.in.h:2
 #: ../src/xfce4-notes-plugin.desktop.in.in.h:2
-#: ../src/xfce4-notes-plugin-47.desktop.in.h:2
-#: ../lib/application.vala:127
-#: ../lib/application.vala:557
-#: ../lib/window.vala:83
-#: ../lib/window.vala:170
-#: ../lib/window.vala:968
-#: ../src/xfce4-notes-settings.c:93
-#: ../src/main-panel-plugin-47.vala:46
-#: ../src/main-panel-plugin.vala:45
-#: ../src/main-status-icon.vala:34
+#: ../src/xfce4-notes-plugin-47.desktop.in.h:2 ../lib/application.vala:183
+#: ../lib/application.vala:210 ../lib/application.vala:609
+#: ../lib/window.vala:84 ../lib/window.vala:159 ../lib/window.vala:884
+#: ../src/xfce4-notes-settings.c:99 ../src/main-panel-plugin-47.vala:46
+#: ../src/main-panel-plugin.vala:45 ../src/main-status-icon.vala:34
 #: ../src/main-status-icon.vala:115
 msgid "Notes"
 msgstr "Anteckningar"
 
-#: ../lib/application.vala:131
-#: ../lib/window.vala:971
+#: ../lib/application.vala:118 ../lib/application.vala:133
+#: ../src/xfce4-notes-settings.c:223 ../src/xfce4-notes-settings.c:231
+msgid "Select notes path"
+msgstr ""
+
+#: ../lib/application.vala:119
+#, c-format
+msgid "The selected directory (%s) for the new notes path already contains 
files. You must select or create an empty directory."
+msgstr ""
+
+#: ../lib/application.vala:134
+#, c-format
+msgid "Unable to select directory for new notes path: %s"
+msgstr ""
+
+#: ../lib/application.vala:187 ../lib/window.vala:887
 #, c-format
 msgid "Notes %d"
 msgstr "Anteckningar %d"
 
-#: ../lib/application.vala:359
+#: ../lib/application.vala:411
 msgid "Rename group"
 msgstr "Byt namn på grupp"
 
-#: ../lib/application.vala:380
-#: ../lib/window.vala:1093
+#: ../lib/application.vala:432 ../lib/window.vala:1009
 #, c-format
 msgid "The name %s is already in use"
 msgstr "Namnet %s används redan"
 
-#: ../lib/application.vala:406
+#: ../lib/application.vala:458
 msgid "Are you sure you want to delete this group?"
 msgstr "Är du säker på att du vill ta bort denna grupp?"
 
-#: ../lib/application.vala:463
+#: ../lib/application.vala:515
 #, c-format
 msgid "The name \"%s\" is invalid."
 msgstr "Namnet \"%s\" är ogiltigt."
 
-#: ../lib/application.vala:464
+#: ../lib/application.vala:516
 #, c-format
 msgid "The invalid characters are: %s"
 msgstr "De ogiltiga tecknen är: %s"
 
-#: ../lib/application.vala:521
+#: ../lib/application.vala:573
 msgid "Unable to open the settings dialog"
 msgstr "Kunde inte öppna inställningsdialogen"
 
-#: ../lib/application.vala:566
+#: ../lib/application.vala:618
 msgid "translator-credits"
 msgstr ""
 "Daniel Nylander \n"
@@ -82,208 +89,229 @@ msgstr ""
 "Skicka synpunkter på översättningen till\n"
 "."
 
-#: ../lib/application.vala:601
-#: ../lib/window.vala:835
+#: ../lib/application.vala:653 ../lib/window.vala:751
 msgid "_Add a new group"
 msgstr "_Lägg till en ny grupp"
 
-#: ../lib/window.vala:221
+#: ../lib/window.vala:209
 msgid "Menu"
 msgstr "Meny"
 
-#: ../lib/window.vala:243
+#: ../lib/window.vala:246
 #, c-format
 msgid "Hide (%s)"
 msgstr "Dölj (%s)"
 
-#: ../lib/window.vala:703
-#: ../src/main-panel-plugin-47.vala:50
-#: ../src/main-panel-plugin.vala:49
-#: ../src/main-status-icon.vala:53
+#: ../lib/window.vala:618 ../src/main-panel-plugin-47.vala:50
+#: ../src/main-panel-plugin.vala:49 ../src/main-status-icon.vala:53
 msgid "_Groups"
 msgstr "_Grupper"
 

[Xfce4-commits] l10n: Updated Swedish (sv) translation to 100%

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to bc2c8d7ae1bf4b4477d033e2f246619b49968d51 (commit)
   from 7c67f1f61ace312138989c0912aef79d724da0fd (commit)

commit bc2c8d7ae1bf4b4477d033e2f246619b49968d51
Author: Daniel Nylander 
Date:   Sun Dec 19 23:56:16 2010 +0100

l10n: Updated Swedish (sv) translation to 100%

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

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

 po/sv.po |   48 
 1 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index bff8059..c1130c4 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -2,97 +2,97 @@
 # Copyright (c) 2006, 2008 Free Software Foundation, Inc.
 # This file is distributed under the same license as the 
xfce4-systemload-plugin package.
 # Daniel Nylander , 2006, 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-systemload-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-13 01:24+0900\n"
+"POT-Creation-Date: 2010-12-19 17:13+\n"
 "PO-Revision-Date: 2008-12-13 13:52+0100\n"
 "Last-Translator: Daniel Nylander \n"
 "Language-Team: Swedish \n"
-"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/cpu.c:62
+#: ../panel-plugin/cpu.c:63
 msgid "File /proc/stat not found!"
 msgstr "Filen /proc/stat hittades inte!"
 
-#: ../panel-plugin/systemload.c:159
+#: ../panel-plugin/systemload.c:160
 #, c-format
 msgid "System Load: %ld%%"
 msgstr "Systembelastning: %ld%%"
 
-#: ../panel-plugin/systemload.c:166
+#: ../panel-plugin/systemload.c:167
 #, c-format
 msgid "Memory: %ldMB of %ldMB used"
 msgstr "Minne: %ld MB av %ld MB använt"
 
-#: ../panel-plugin/systemload.c:174
+#: ../panel-plugin/systemload.c:175
 #, c-format
 msgid "Swap: %ldMB of %ldMB used"
 msgstr "Växlingsutrymme: %ld MB av %ld MB använt"
 
-#: ../panel-plugin/systemload.c:177
+#: ../panel-plugin/systemload.c:178
 #, c-format
 msgid "No swap"
 msgstr "Inget växlingsutrymme"
 
-#: ../panel-plugin/systemload.c:187
-#, fuzzy, c-format
+#: ../panel-plugin/systemload.c:188
+#, c-format
 msgid "%d day"
 msgid_plural "%d days"
-msgstr[0] "%d dagar"
+msgstr[0] "%d dag"
 msgstr[1] "%d dagar"
 
-#: ../panel-plugin/systemload.c:195
+#: ../panel-plugin/systemload.c:196
 #, c-format
 msgid "Uptime: %d day %d:%02d"
 msgid_plural "Uptime: %d days %d:%02d"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "Upptid: %d dygn %d:%02d"
+msgstr[1] "Upptid: %d dygn %d:%02d"
 
-#: ../panel-plugin/systemload.c:722
+#: ../panel-plugin/systemload.c:723
 msgid "Select color"
 msgstr "Välj färg"
 
-#: ../panel-plugin/systemload.c:786
+#: ../panel-plugin/systemload.c:787
 msgid "CPU monitor"
 msgstr "Processorövervakare"
 
-#: ../panel-plugin/systemload.c:787
+#: ../panel-plugin/systemload.c:788
 msgid "Memory monitor"
 msgstr "Minnesövervakare"
 
-#: ../panel-plugin/systemload.c:788
+#: ../panel-plugin/systemload.c:789
 msgid "Swap monitor"
 msgstr "Övervaka växlingutrymme"
 
-#: ../panel-plugin/systemload.c:789
+#: ../panel-plugin/systemload.c:790
 msgid "Uptime monitor"
 msgstr "Upptidsövervakare"
 
-#: ../panel-plugin/systemload.c:794
+#: ../panel-plugin/systemload.c:795
 #: ../panel-plugin/systemload.desktop.in.in.h:2
 msgid "System Load Monitor"
 msgstr "Övervaka systembelastning"
 
-#: ../panel-plugin/systemload.c:821 ../panel-plugin/systemload.c:902
+#: ../panel-plugin/systemload.c:822 ../panel-plugin/systemload.c:903
 msgid "Show monitor"
 msgstr "Visa övervakare"
 
-#: ../panel-plugin/systemload.c:831
+#: ../panel-plugin/systemload.c:832
 msgid "Text to display:"
 msgstr "Text att visa:"
 
-#: ../panel-plugin/systemload.c:863
+#: ../panel-plugin/systemload.c:864
 msgid "Bar color:"
 msgstr "Stapelfärg:"
 
-#: ../panel-plugin/uptime.c:52
+#: ../panel-plugin/uptime.c:53
 msgid "File /proc/uptime not found!"
 msgstr "Filen /proc/uptime hittades inte!"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Swedish (sv) translation to 84%

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to b0b9ef56812c57dd47d8b18ce906cf4112ebb11f (commit)
   from 01f19ba67ca16f9138a0179d0cf786dff18a5444 (commit)

commit b0b9ef56812c57dd47d8b18ce906cf4112ebb11f
Author: Daniel Nylander 
Date:   Sun Dec 19 23:55:20 2010 +0100

l10n: Updated Swedish (sv) translation to 84%

New status: 98 messages complete with 6 fuzzies and 12 untranslated.

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

 po/sv.po |  107 --
 1 files changed, 41 insertions(+), 66 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index f1aa913..485f164 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -2,7 +2,7 @@
 # Copyright (C) 2008 Free Software Foundation, Inc.
 # This file is distributed under the same license as the thunar-volman package.
 # Daniel Nylander , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: thunar-volman\n"
@@ -11,10 +11,10 @@ msgstr ""
 "PO-Revision-Date: 2009-12-16 18:21+0100\n"
 "Last-Translator: Daniel Nylander \n"
 "Language-Team: Swedish \n"
-"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sv\n"
 
 #: ../thunar-volman/main.c:59
 #, fuzzy
@@ -94,17 +94,12 @@ msgid "Photo Import"
 msgstr "Fotoimport"
 
 #: ../thunar-volman/tvm-block-device.c:274
-#, fuzzy
 msgid "A photo card has been detected"
-msgstr "Ett fotokort har upptäckts."
+msgstr "Ett fotokort har upptäckts"
 
 #: ../thunar-volman/tvm-block-device.c:275
-msgid ""
-"There are photos on the card. Would you like to add these photos to your "
-"album?"
-msgstr ""
-"Det finns foton på kortet. Vill du lägga till dessa foton till ditt "
-"fotoalbum?"
+msgid "There are photos on the card. Would you like to add these photos to 
your album?"
+msgstr "Det finns foton på kortet. Vill du lägga till dessa foton till ditt 
fotoalbum?"
 
 #. prompt the user to execute the file
 #. prompt the user to execute this file
@@ -149,11 +144,11 @@ msgstr "_Öppna"
 
 #: ../thunar-volman/tvm-block-device.c:619
 msgid "CD mounted"
-msgstr ""
+msgstr "CD monterad"
 
 #: ../thunar-volman/tvm-block-device.c:619
 msgid "DVD mounted"
-msgstr ""
+msgstr "DVD monterad"
 
 #: ../thunar-volman/tvm-block-device.c:621
 msgid "The CD was mounted automatically"
@@ -165,7 +160,7 @@ msgstr ""
 
 #: ../thunar-volman/tvm-block-device.c:632
 msgid "Volume mounted"
-msgstr ""
+msgstr "Volym monterad"
 
 #: ../thunar-volman/tvm-block-device.c:635
 #, c-format
@@ -180,12 +175,12 @@ msgstr ""
 #: ../thunar-volman/tvm-block-device.c:694
 #, c-format
 msgid "Unable to locate mount point"
-msgstr ""
+msgstr "Kunde inte hitta monteringspunkten"
 
 #: ../thunar-volman/tvm-block-device.c:740
 #, c-format
 msgid "Unable to mount the device"
-msgstr ""
+msgstr "Kunde inte montera enheten"
 
 #: ../thunar-volman/tvm-block-device.c:749
 #, c-format
@@ -193,7 +188,6 @@ msgid "Could not detect the volume corresponding to the 
device"
 msgstr ""
 
 #: ../thunar-volman/tvm-block-device.c:824
-#, fuzzy
 msgid "Audio/Data CD"
 msgstr "Ljud-/data-cd"
 
@@ -222,7 +216,7 @@ msgstr ""
 #: ../thunar-volman/tvm-device.c:139
 #, c-format
 msgid "Device type not supported"
-msgstr ""
+msgstr "Enhetstypen stöds inte"
 
 #: ../thunar-volman/tvm-input-device.c:74
 #, fuzzy
@@ -230,14 +224,12 @@ msgid "input-keyboard"
 msgstr "Tangentbord"
 
 #: ../thunar-volman/tvm-input-device.c:75
-#, fuzzy
 msgid "Keyboard detected"
-msgstr "Tangentbord"
+msgstr "Tangentbord upptäcktes"
 
 #: ../thunar-volman/tvm-input-device.c:76
-#, fuzzy
 msgid "A keyboard was detected"
-msgstr "Ett fotokort har upptäckts."
+msgstr "Ett tangentbord upptäcktes"
 
 #: ../thunar-volman/tvm-input-device.c:86
 #: ../thunar-volman/tvm-input-device.c:100
@@ -246,14 +238,13 @@ msgstr ""
 
 #: ../thunar-volman/tvm-input-device.c:87
 #: ../thunar-volman/tvm-input-device.c:101
-#, fuzzy
 msgid "Tablet detected"
-msgstr "Förmåga för automatisk körning hittades"
+msgstr "Ritbräda upptäcktes"
 
 #: ../thunar-volman/tvm-input-device.c:88
 #: ../thunar-volman/tvm-input-device.c:102
 msgid "A graphics tablet was detected"
-msgstr ""
+msgstr "En ritbräda upptäcktes"
 
 #: ../thunar-volman/tvm-input-device.c:110
 msgid "input-mouse"
@@ -261,11 +252,11 @@ msgstr ""
 
 #: ../thunar-volman/tvm-input-device.c:111
 msgid "Mouse detected"
-msgstr ""
+msgstr "Mus upptäcktes"
 
 #: ../thunar-volman/tvm-input-device.c:112
 msgid "A mouse was detected"
-msgstr ""
+msgstr "En mus upptäcktes"
 
 #: ../thunar-volman/tvm-input-device.c:141
 #, c-format
@@ -279,12 +270,11 @@ msgstr ""
 
 #: ../thunar-volman/tvm-run.c:189
 msgid "Blank DVD inserted"
-msgstr ""
+msgstr "Tom DVD-skiva inmatad"
 
 #: ../thunar-volman/tvm-run.c:190
-#, fuzzy
 msgid "You have inserted a blank DVD."
-msgstr "Du har matat in en tom skiva."
+msgstr "Du har matat in en tom DVD-skiva."
 
 #: ../thunar-volman/tvm-run.c:191 ../thunar-volman/tvm-run.c:202
 msgid "What would you like to do?"
@@ -292,41 +282,37 @@ m

[Xfce4-commits] l10n: Updated Swedish (sv) translation to 100%

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 608de4484c6b17f9c18b39b4aa81c5d5b7647159 (commit)
   from fe64ef303633f6f091fdb42885a60d24ab4eeb3f (commit)

commit 608de4484c6b17f9c18b39b4aa81c5d5b7647159
Author: Daniel Nylander 
Date:   Sun Dec 19 23:51:14 2010 +0100

l10n: Updated Swedish (sv) translation to 100%

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

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

 po/sv.po |  147 --
 1 files changed, 66 insertions(+), 81 deletions(-)

diff --git a/po/sv.po b/po/sv.po
index 2b5fa91..a32d758 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2008, 2009 Free Software Foundation, Inc.
 # This file is distributed under the same license as the thunar-shares-plugin 
package.
 # Daniel Nylander , 2008, 2009.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: thunar-shares-plugin\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-02-09 00:26+0100\n"
+"POT-Creation-Date: 2010-12-19 17:13+\n"
 "PO-Revision-Date: 2009-02-09 00:33+0100\n"
 "Last-Translator: Daniel Nylander \n"
 "Language-Team: Swedish \n"
@@ -15,180 +15,165 @@ msgstr ""
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: ../libshares/libshares-util.c:163
+#: ../libshares/libshares-util.c:161
 msgid "Please, write a name."
 msgstr "Ange ett namn."
 
 #. Warn the user
-#: ../libshares/libshares-util.c:171
+#: ../libshares/libshares-util.c:169
 msgid "Share name too long. Some old clients may have problems to access it, 
continue anyway?"
 msgstr "Utdelningsnamnet är för långt. Vissa gamla klienter kan få problem med 
att komma åt den. Fortsätt ändå?"
 
-#: ../libshares/libshares-util.c:184
+#: ../libshares/libshares-util.c:182
 #, c-format
 msgid "Error while getting share information: %s"
 msgstr "Fel vid hämtning av utdelningsinformation: %s"
 
-#: ../libshares/libshares-util.c:194
+#: ../libshares/libshares-util.c:192
 msgid "Another share has the same name"
 msgstr "En annan utdelning har samma namn"
 
-#: ../libshares/libshares-util.c:254
+#: ../libshares/libshares-util.c:246
 msgid "Cannot modify the share:"
 msgstr "Kan inte ändra utdelningen:"
 
-#: ../libshares/libshares-util.c:349
+#: ../libshares/libshares-util.c:345
 msgid "Thunar needs to add some permissions to your folder in order to share 
it. Do you agree?"
 msgstr "Thunar behöver lägga till några rättigheter på din mapp för att kunna 
dela ut den. Godkänner du det?"
 
-#: ../libshares/libshares-util.c:390
+#: ../libshares/libshares-util.c:384
 msgid "Error when changing folder permissions."
 msgstr "Fel vid ändring av mapprättigheter."
 
-#: ../libshares/shares.c:153
+#: ../libshares/shares.c:165
 #, c-format
 msgid "%s %s %s returned with signal %d"
 msgstr "%s %s %s returnerade signal %d"
 
-#: ../libshares/shares.c:162
+#: ../libshares/shares.c:174
 #, c-format
 msgid "%s %s %s failed for an unknown reason"
 msgstr "%s %s %s misslyckades av en okänd anledning"
 
-#: ../libshares/shares.c:183
+#: ../libshares/shares.c:195
 #, c-format
 msgid "'net usershare' returned error %d: %s"
 msgstr "'net usershare' returnerade fel %d: %s"
 
-#: ../libshares/shares.c:185
+#: ../libshares/shares.c:197
 #, c-format
 msgid "'net usershare' returned error %d"
 msgstr "'net usershare' returnerade fel %d"
 
-#: ../libshares/shares.c:219
+#: ../libshares/shares.c:231
 #, c-format
 msgid "the output of 'net usershare' is not in valid UTF-8 encoding"
 msgstr "utdata från 'net usershare' är inte i giltig UTF-8-kodning"
 
-#: ../libshares/shares.c:478
-#: ../libshares/shares.c:658
+#: ../libshares/shares.c:490 ../libshares/shares.c:702
 #, c-format
 msgid "Failed"
 msgstr "Misslyckades"
 
-#: ../libshares/shares.c:593
+#: ../libshares/shares.c:592
 #, c-format
 msgid "Samba's testparm returned with signal %d"
 msgstr "Sambas testparm returnerade signal %d"
 
-#: ../libshares/shares.c:599
+#: ../libshares/shares.c:598
 #, c-format
 msgid "Samba's testparm failed for an unknown reason"
 msgstr "Sambas testparm misslyckades av en okänd anledning"
 
-#: ../libshares/shares.c:614
+#: ../libshares/shares.c:613
 #, c-format
 msgid "Samba's testparm returned error %d: %s"
 msgstr "Sambas testparm returnerade fel %d: %s"
 
-#: ../libshares/shares.c:616
+#: ../libshares/shares.c:615
 #, c-format
 msgid "Samba's testparm returned error %d"
 msgstr "Sambas testparm returnerade fel %d"
 
-#: ../libshares/shares.c:729
+#: ../libshares/shares.c:784
 #, c-format
 msgid "Cannot remove the share for path %s: that path is not shared"
 msgstr "Kan inte ta bort utdelningen för sökvägen %s: den sökvägen delas inte 
ut"
 
-#: ../libshares/shares.c:782
+#: ../libshares/shares.c:837
 #, c-format
 msgid "Cannot change the path of an existing share; please remove the old 
share first and add a new one"
 msgstr "Kan inte ändra sökvägen för en befintlig utdelning; ta bort den gamla 
utdelningen och lägg till en ny"
 

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to b47de880bdbe59c763539e2cd7a5e2232030d423 (commit)
   from f615e4743b96832fbdf0dfd116463fbce7e848fa (commit)

commit b47de880bdbe59c763539e2cd7a5e2232030d423
Author: Fabian Nowak 
Date:   Sun Dec 19 22:38:12 2010 +0100

l10n: Updated German (de) translation to 100%

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

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

 po/de.po |   19 ++-
 1 files changed, 6 insertions(+), 13 deletions(-)

diff --git a/po/de.po b/po/de.po
index cca9e08..287cdf9 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,19 +3,19 @@
 # Copyright (C) 2010 THE transd'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the transd package.
 # Fabian Nowak , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: transd 0.1.0svn\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-09-14 12:44+0200\n"
+"POT-Creation-Date: 2010-12-19 17:01+\n"
 "PO-Revision-Date: 2010-09-14 12:46+0200\n"
 "Last-Translator: Fabian Nowak \n"
 "Language-Team: German\n"
-"Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../src/transd.c:116
@@ -23,20 +23,13 @@ msgid "Configuration format changed."
 msgstr "Einstellungsformat geändert."
 
 #: ../src/transd.c:117
-msgid ""
-"Transd now uses a new configuration file format.  Please see the README for "
-"details.  Transd will now exit."
-msgstr ""
-"Transd benutzt nun ein neues Einstellungsformat. Bitte lesen Sie die Datei "
-"README für Details. Transd wird nun beendet."
+msgid "Transd now uses a new configuration file format.  Please see the README 
for details.  Transd will now exit."
+msgstr "Transd benutzt nun ein neues Einstellungsformat. Bitte lesen Sie die 
Datei README für Details. Transd wird nun beendet."
 
 #: ../transd.desktop.in.h:1
 msgid "Daemon which monitors windows and sets transparency based on rulesets"
-msgstr ""
-"Dienst, der Fenster beobachtet und Transparenz basierend auf Regelsätzen "
-"anwendet"
+msgstr "Dienst, der Fenster beobachtet und Transparenz basierend auf 
Regelsätzen einstellt"
 
 #: ../transd.desktop.in.h:2
 msgid "Transparency Daemon"
 msgstr "Transparenz-Dienst"
-
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 4ef33764d9cd4a2740737fc60b9a6656e0ad8092 (commit)
   from 9afc884df0b2620c6e4061973af731dc3be6be20 (commit)

commit 4ef33764d9cd4a2740737fc60b9a6656e0ad8092
Author: Christoph Wickert 
Date:   Sun Dec 19 21:30:39 2010 +0100

l10n: Updated German (de) translation to 100%

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

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

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

diff --git a/po/de.po b/po/de.po
index 481ee98..b0785ed 100644
--- a/po/de.po
+++ b/po/de.po
@@ -23,7 +23,7 @@ msgstr "Schnellstarter konfigurieren"
 
 #: ../panel-plugin/callbacks.c:93
 msgid "Lines: "
-msgstr "Zeilen: "
+msgstr "Zeilen:"
 
 #: ../panel-plugin/callbacks.c:123
 msgid "Espace entre les lanceurs :"
@@ -51,7 +51,7 @@ msgstr "Name"
 
 #: ../panel-plugin/callbacks.c:327
 msgid "Open icon"
-msgstr "Symbol »Öffnen«"
+msgstr "Symbol wählen"
 
 #: ../panel-plugin/main.c:163 ../panel-plugin/quicklauncher.desktop.in.in.h:2
 msgid "Quicklauncher"
@@ -67,15 +67,15 @@ msgstr "Andere Erweiterungen siehe: "
 
 #: ../panel-plugin/main.c:320
 msgid "Lock"
-msgstr "Sperre"
+msgstr "Bildschirm sperren"
 
 #: ../panel-plugin/main.c:323
 msgid "Parameters"
-msgstr "Parameter"
+msgstr "Einstellungen"
 
 #: ../panel-plugin/main.c:326
 msgid "Applications"
-msgstr "Anwendung"
+msgstr "Anwendungsfinder"
 
 #: ../panel-plugin/main.c:329
 msgid "Help"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Install desktop files in xfce4/plugins/actions (bug #7013).

2010-12-19 Thread Nick Schermer
Updating branch refs/heads/master
 to d2b0cf068cd01762ec812b04fd839b83e6008889 (commit)
   from d304b5357f44c33f218c5bfe4bf61d0932d9f385 (commit)

commit d2b0cf068cd01762ec812b04fd839b83e6008889
Author: Nick Schermer 
Date:   Sun Dec 19 20:27:06 2010 +0100

Install desktop files in xfce4/plugins/actions (bug #7013).

 plugins/actions/Makefile.am  |2 +-
 plugins/applicationsmenu/Makefile.am |2 +-
 plugins/clock/Makefile.am|2 +-
 plugins/directorymenu/Makefile.am|2 +-
 plugins/launcher/Makefile.am |2 +-
 plugins/pager/Makefile.am|2 +-
 plugins/separator/Makefile.am|2 +-
 plugins/showdesktop/Makefile.am  |2 +-
 plugins/systray/Makefile.am  |2 +-
 plugins/tasklist/Makefile.am |2 +-
 plugins/windowmenu/Makefile.am   |2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/plugins/actions/Makefile.am b/plugins/actions/Makefile.am
index 4b1e18f..1bd65c4 100644
--- a/plugins/actions/Makefile.am
+++ b/plugins/actions/Makefile.am
@@ -48,7 +48,7 @@ libactions_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = actions.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/applicationsmenu/Makefile.am 
b/plugins/applicationsmenu/Makefile.am
index 0c031e8..59462fe 100644
--- a/plugins/applicationsmenu/Makefile.am
+++ b/plugins/applicationsmenu/Makefile.am
@@ -60,7 +60,7 @@ xfce4-popup-applicationsmenu: xfce4-popup-applicationsmenu.sh 
Makefile
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = applicationsmenu.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/clock/Makefile.am b/plugins/clock/Makefile.am
index 69df3d6..923fb33 100644
--- a/plugins/clock/Makefile.am
+++ b/plugins/clock/Makefile.am
@@ -61,7 +61,7 @@ libclock_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = clock.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/directorymenu/Makefile.am 
b/plugins/directorymenu/Makefile.am
index e69b905..8847f28 100644
--- a/plugins/directorymenu/Makefile.am
+++ b/plugins/directorymenu/Makefile.am
@@ -62,7 +62,7 @@ xfce4-popup-directorymenu: xfce4-popup-directorymenu.sh 
Makefile
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = directorymenu.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/launcher/Makefile.am b/plugins/launcher/Makefile.am
index f7e7365..e7029db 100644
--- a/plugins/launcher/Makefile.am
+++ b/plugins/launcher/Makefile.am
@@ -57,7 +57,7 @@ liblauncher_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = launcher.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/pager/Makefile.am b/plugins/pager/Makefile.am
index 5872349..ceb1ea7 100644
--- a/plugins/pager/Makefile.am
+++ b/plugins/pager/Makefile.am
@@ -53,7 +53,7 @@ libpager_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = pager.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/separator/Makefile.am b/plugins/separator/Makefile.am
index 9bbdf6a..1312aab 100644
--- a/plugins/separator/Makefile.am
+++ b/plugins/separator/Makefile.am
@@ -50,7 +50,7 @@ libseparator_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = separator.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/showdesktop/Makefile.am b/plugins/showdesktop/Makefile.am
index 4d035ec..c166d47 100644
--- a/plugins/showdesktop/Makefile.am
+++ b/plugins/showdesktop/Makefile.am
@@ -39,7 +39,7 @@ libshowdesktop_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desktopdir = $(datadir)/xfce4/panel/plugins
 desktop_in_files = showdesktop.desktop.in
 desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
 @INTLTOOL_DESKTOP_RULE@
diff --git a/plugins/systray/Makefile.am b/plugins/systray/Makefile.am
index 10532fd..01db738 100644
--- a/plugins/systray/Makefile.am
+++ b/plugins/systray/Makefile.am
@@ -58,7 +58,7 @@ libsystray_la_DEPENDENCIES = \
 #
 # .desktop file
 #
-desktopdir = $(datadir)/xfce4/panel-plugins
+desk

[Xfce4-commits] Also load desktop files from xfce4/panel/plugins (bug #7013).

2010-12-19 Thread Nick Schermer
Updating branch refs/heads/master
 to d304b5357f44c33f218c5bfe4bf61d0932d9f385 (commit)
   from 15ab32f5d39586ae214ceb9d20c31762ecb85dc2 (commit)

commit d304b5357f44c33f218c5bfe4bf61d0932d9f385
Author: Nick Schermer 
Date:   Sun Dec 19 20:21:42 2010 +0100

Also load desktop files from xfce4/panel/plugins (bug #7013).

The new library location is $libdir/xfce4/panel/plugins, so
for consistency we now also load desktop files from
$datadir/xfce4/panel/plugins.
The old location ($datadir/xfce4/panel-plugins) is still supported
so we don't break 4.6 plugins.

 panel/panel-module-factory.c |   29 ++---
 1 files changed, 22 insertions(+), 7 deletions(-)

diff --git a/panel/panel-module-factory.c b/panel/panel-module-factory.c
index ef302f9..1433dba 100644
--- a/panel/panel-module-factory.c
+++ b/panel/panel-module-factory.c
@@ -38,13 +38,14 @@
 #include 
 #include 
 
-#define PANEL_PLUGINS_DATA_DIR DATADIR G_DIR_SEPARATOR_S "panel-plugins"
+#define PANEL_PLUGINS_DATA_DIR (DATADIR G_DIR_SEPARATOR_S "panel" 
G_DIR_SEPARATOR_S "plugins")
+#define PANEL_PLUGINS_DATA_DIR_OLD (DATADIR G_DIR_SEPARATOR_S "panel-plugins")
 
 
 
 static void panel_module_factory_finalize(GObject  
*object);
 static void panel_module_factory_load_modules(PanelModuleFactory   
*factory,
-  gboolean 
 first_time);
+  gboolean 
 warn_if_known);
 static gboolean panel_module_factory_modules_cleanup (gpointer 
 key,
   gpointer 
 value,
   gpointer 
 user_data);
@@ -138,8 +139,9 @@ panel_module_factory_finalize (GObject *object)
 
 
 static void
-panel_module_factory_load_modules (PanelModuleFactory *factory,
-   gbooleanfirst_time)
+panel_module_factory_load_modules_dir (PanelModuleFactory *factory,
+   const gchar*path,
+   gbooleanwarn_if_known)
 {
   GDir*dir;
   const gchar *name, *p;
@@ -148,7 +150,7 @@ panel_module_factory_load_modules (PanelModuleFactory 
*factory,
   gchar   *internal_name;
 
   /* try to open the directory */
-  dir = g_dir_open (PANEL_PLUGINS_DATA_DIR, 0, NULL);
+  dir = g_dir_open (path, 0, NULL);
   if (G_UNLIKELY (dir == NULL))
 return;
 
@@ -165,7 +167,7 @@ panel_module_factory_load_modules (PanelModuleFactory 
*factory,
 continue;
 
   /* create the full .desktop filename */
-  filename = g_build_filename (PANEL_PLUGINS_DATA_DIR, name, NULL);
+  filename = g_build_filename (path, name, NULL);
 
   /* find the dot in the name, this cannot
* fail since it pasted the .desktop suffix check */
@@ -177,7 +179,7 @@ panel_module_factory_load_modules (PanelModuleFactory 
*factory,
   /* check if the modules name is already loaded */
   if (g_hash_table_lookup (factory->modules, internal_name) != NULL)
 {
-  if (first_time)
+  if (warn_if_known)
 {
   g_debug ("Another plugin already registered with "
"the internal name \"%s\".", internal_name);
@@ -214,6 +216,19 @@ panel_module_factory_load_modules (PanelModuleFactory 
*factory,
 
 
 
+static void
+panel_module_factory_load_modules (PanelModuleFactory *factory,
+   gbooleanwarn_if_known)
+{
+  panel_return_if_fail (PANEL_IS_MODULE_FACTORY (factory));
+
+  /* load from the new and old location */
+  panel_module_factory_load_modules_dir (factory, PANEL_PLUGINS_DATA_DIR, 
warn_if_known);
+  panel_module_factory_load_modules_dir (factory, PANEL_PLUGINS_DATA_DIR_OLD, 
warn_if_known);
+}
+
+
+
 static gboolean
 panel_module_factory_modules_cleanup (gpointer key,
   gpointer value,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Include libxfcegui4 when building against Xfce 4.7

2010-12-19 Thread Mike Massonnet
Updating branch refs/heads/master
 to 9fe5617aa5c8e5264d1b4fe4191c1be547383ca4 (commit)
   from 0e6f28300a96e8971caf21ff33b914f2779a97a2 (commit)

commit 9fe5617aa5c8e5264d1b4fe4191c1be547383ca4
Author: Mike Massonnet 
Date:   Sun Dec 19 20:13:23 2010 +0100

Include libxfcegui4 when building against Xfce 4.7

These files are provided by xfce4-vala 4.6, but not xfce4-vala 4.7.

 configure.ac.in|1 +
 .../libxfcegui4-1.0.deps}  |0
 data/vapi/xfce46/libxfcegui4-1.0.vapi  |   94 
 3 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 11cd92a..9c323f3 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -107,6 +107,7 @@ echo "* Maintainer Mode:$USE_MAINTAINER_MODE"
 if test "x$USE_MAINTAINER_MODE" = "xyes" ; then
 echo
 echo "* Vala:   $VALAC $am__vala_version"
+echo "* Xfce4-vala: $XFCE4VALA_VERSION"
 echo
 fi
 echo "* GTK+:   $GTK_VERSION"
diff --git a/data/vapi/xfce47/libxfce4panel-1.0.deps 
b/data/vapi/xfce46/libxfcegui4-1.0.deps
similarity index 100%
copy from data/vapi/xfce47/libxfce4panel-1.0.deps
copy to data/vapi/xfce46/libxfcegui4-1.0.deps
diff --git a/data/vapi/xfce46/libxfcegui4-1.0.vapi 
b/data/vapi/xfce46/libxfcegui4-1.0.vapi
new file mode 100644
index 000..8cde8bc
--- /dev/null
+++ b/data/vapi/xfce46/libxfcegui4-1.0.vapi
@@ -0,0 +1,94 @@
+/* libxfcegui4-1.0.vapi generated by vapigen, do not modify. */
+
+[CCode (cprefix = "Xfce", lower_case_cprefix = "xfce_")]
+namespace Xfce {
+   [CCode (cheader_filename = "libxfcegui4/libxfcegui4.h")]
+   public class AppMenuItem : Gtk.ImageMenuItem, Gtk.Buildable, 
Atk.Implementor {
+   [CCode (type = "GtkWidget*", has_construct_function = false)]
+   public AppMenuItem.full (string label, string command, string 
icon_filename, bool needs_term, bool snotify);
+   [CCode (type = "GtkWidget*", has_construct_function = false)]
+   public AppMenuItem ();
+   public static void set_icon_theme_name (string theme_name);
+   [CCode (type = "GtkWidget*", has_construct_function = false)]
+   public AppMenuItem.with_command (string label, string command);
+   [CCode (type = "GtkWidget*", has_construct_function = false)]
+   public AppMenuItem.with_label (string label);
+   [CCode (type = "GtkWidget*", has_construct_function = false)]
+   public AppMenuItem.with_mnemonic (string label);
+   public string command { get; set; }
+   public string icon_name { get; set; }
+   [NoAccessorMethod]
+   public string label { owned get; set; }
+   public bool needs_term { get; set; }
+   [NoAccessorMethod]
+   public bool snotify { get; set; }
+   [NoAccessorMethod]
+   public bool use_underline { get; set; }
+   }
+   [Compact]
+   [CCode (cheader_filename = "libxfcegui4/libxfcegui4.h")]
+   public class Dialog {
+   [CCode (cname = "xfce_confirm")]
+   public static bool confirm (string text, string stock_id, 
string? action);
+   [CCode (cname = "xfce_err")]
+   public static void error (string format);
+   [CCode (cname = "xfce_info")]
+   public static void info (string format);
+   [CCode (cname = "xfce_warn")]
+   public static void warning (string format);
+   }
+   [Compact]
+   [CCode (cheader_filename = "libxfcegui4/libxfcegui4.h")]
+   public class Exec {
+   [CCode (cname = "xfce_exec")]
+   public static bool exec (string cmd, bool in_terminal, bool 
use_sn) throws GLib.Error;
+   [CCode (cname = "xfce_exec_with_envp")]
+   public static bool exec_with_envp (string cmd, bool 
in_terminal, bool use_sn, string[] envp) throws GLib.Error;
+   }
+   [Compact]
+   [CCode (cheader_filename = "libxfcegui4/libxfcegui4.h")]
+   public class Extensions {
+   [CCode (cname = "xfce_gdk_display_get_fullname")]
+   public static string gdk_display_get_fullname (Gdk.Display 
display);
+   [CCode (cname = "xfce_gdk_display_locate_monitor_with_pointer")]
+   public static unowned Gdk.Screen 
gdk_display_locate_monitor_with_pointer (Gdk.Display? display, out int? 
monitor_return);
+   [CCode (cname = "xfce_gdk_screen_get_fullname")]
+   public static string gdk_screen_get_fullname (Gdk.Screen 
screen);
+   [CCode (cname = "xfce_gdk_spawn_command_line_on_screen")]
+   public static bool gdk_spawn_command_line_on_screen (Gdk.Screen 
screen, string command_line) throws GLib.Error;
+   [CCode (cname = "xfce_gdk_spawn_on_screen"

[Xfce4-commits] Fix compilation error with --disable-polkit, patch from Lierdakil, bug #6568

2010-12-19 Thread Ali Abdallah
Updating branch refs/heads/master
 to 448d287873e60a46d59e8ffa347ec65aaaf5a7ca (commit)
   from ef267cd6ce562e65c59e55373572286c8d906545 (commit)

commit 448d287873e60a46d59e8ffa347ec65aaaf5a7ca
Author: Ali Abdallah 
Date:   Sun Dec 19 20:14:09 2010 +0100

Fix compilation error with --disable-polkit, patch from
Lierdakil, bug #6568

 configure.ac.in   |4 ++--
 src/xfpm-polkit.c |2 ++
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 936c6e8..899e938 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -85,10 +85,10 @@ XDT_CHECK_PACKAGE([XRANDR],[xrandr], 
[xrandr_minimum_version])
 AC_ARG_ENABLE([polkit],
 [AC_HELP_STRING([--disable-polkit],
 [Do not enable PolicyKit support (default=enabled)])],
-[],
+[ac_cv_enable_polkit=$enableval],
 [ac_cv_enable_polkit=polkit])
 AC_MSG_CHECKING([whether to build with polkit support])
-if test "x$ac_cv_enable_polkit" = !"xyes"; then
+if test "x$ac_cv_enable_polkit" = "xno"; then
 AC_MSG_RESULT([no])
 polkit="no"
 else
diff --git a/src/xfpm-polkit.c b/src/xfpm-polkit.c
index e699e80..1d0d178 100644
--- a/src/xfpm-polkit.c
+++ b/src/xfpm-polkit.c
@@ -565,6 +565,8 @@ xfpm_polkit_get (void)
 
 gboolean xfpm_polkit_check_auth(XfpmPolkit *polkit, const gchar 
*action_id)
 {
+#ifdef ENABLE_POLKIT
 xfpm_polkit_init_data (polkit);
+#endif
 return xfpm_polkit_check_auth_intern (polkit, action_id);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Vala-git: fix error implementing overriden method as private

2010-12-19 Thread Mike Massonnet
Updating branch refs/heads/master
 to 0e6f28300a96e8971caf21ff33b914f2779a97a2 (commit)
   from b9840f297e566be896ea683195017a6e508c984b (commit)

commit 0e6f28300a96e8971caf21ff33b914f2779a97a2
Author: Mike Massonnet 
Date:   Sun Dec 19 12:03:57 2010 +0100

Vala-git: fix error implementing overriden method as private

 lib/icon-button.vala |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/icon-button.vala b/lib/icon-button.vala
index dbf495d..7816ce1 100644
--- a/lib/icon-button.vala
+++ b/lib/icon-button.vala
@@ -114,7 +114,7 @@ namespace Xnp {
Object (icon_type: icon_type);
}
 
-   private override void draw_icon (Cairo.Context cr, int width, 
int height) {
+   protected override void draw_icon (Cairo.Context cr, int width, 
int height) {
switch (icon_type) {
case TitleBarButtonType.CLOSE:
draw_close_button (cr, width, height);
___
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-12-19 Thread Transifex
Updating branch refs/heads/master
 to 25ec93e5b15a97aab857c7f122e0a33eda042b90 (commit)
   from 151a9ae0ac7365c544b237197fa7d526c8ed2e37 (commit)

commit 25ec93e5b15a97aab857c7f122e0a33eda042b90
Author: Harald Servat 
Date:   Sun Dec 19 16:53:39 2010 +0100

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

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

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

 po/ca.po |  220 +
 1 files changed, 62 insertions(+), 158 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 5f1ada8..81431f1 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -2,11 +2,11 @@
 # Catalan translations for orage package.
 # Copyright (C) 2003-2006 The Xfce development team.
 # This file is distributed under the same license as the orage package.
-#
+# 
 # Carles Muñoz Gorriz , 2003-2004, 2006,
 # 2008-2010.
 # Pau Rul·lan Ferragut  2005, 2006.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: orage 4.3.90.2\n"
@@ -59,11 +59,8 @@ msgid "adjust to change hour"
 msgstr "ajustament per canviar l'hora"
 
 #: ../globaltime/globaltime.c:496
-msgid ""
-"adjust to change minute. Click arrows with button 2 to change only 1 minute."
-msgstr ""
-"ajusteu per canviar el minut. Feu clic-dret a les fletxes per canviar només "
-"1 minut."
+msgid "adjust to change minute. Click arrows with button 2 to change only 1 
minute."
+msgstr "ajusteu per canviar el minut. Feu clic-dret a les fletxes per canviar 
només 1 minut."
 
 #: ../globaltime/gt_prefs.c:265 ../globaltime/gt_prefs.c:266
 msgid "NEW"
@@ -212,9 +209,7 @@ msgstr "Feu clic per canviar el color per defecte dels 
rellotges"
 
 #: ../globaltime/gt_prefs.c:877 ../globaltime/gt_prefs.c:910
 msgid "Cross this to use system default instead of selected color"
-msgstr ""
-"Marqueu-lo per emprar el color per defecte del sistema en lloc del "
-"seleccionat"
+msgstr "Marqueu-lo per emprar el color per defecte del sistema en lloc del 
seleccionat"
 
 #: ../globaltime/gt_prefs.c:896
 msgid "Click to change default text colour for clocks"
@@ -226,9 +221,7 @@ msgstr "Feu clic per canvia la font per defecte del nom 
dels rellotges"
 
 #: ../globaltime/gt_prefs.c:944 ../globaltime/gt_prefs.c:978
 msgid "Cross this to use system default font instead of selected font"
-msgstr ""
-"Marqueu-lo per emprar la font per defecte del sistema in lloc de la "
-"seleccionada"
+msgstr "Marqueu-lo per emprar la font per defecte del sistema in lloc de la 
seleccionada"
 
 #: ../globaltime/gt_prefs.c:963
 msgid "Click to change default font for clock time"
@@ -437,8 +430,7 @@ msgstr "fixa _alçada:"
 
 #: ../panel-plugin/oc_config.c:277
 msgid "Note that you can not change the height of horizontal panels"
-msgstr ""
-"Tingueu en compte que no podeu canviar l'alçada dels quadres horitzontals"
+msgstr "Tingueu en compte que no podeu canviar l'alçada dels quadres 
horitzontals"
 
 #: ../panel-plugin/oc_config.c:282
 msgid "set _width:"
@@ -446,8 +438,7 @@ msgstr "fixa a_mplada:"
 
 #: ../panel-plugin/oc_config.c:293
 msgid "Note that you can not change the width of vertical panels"
-msgstr ""
-"Tingueu en compte que no podeu canviar l'amplada dels quadres verticals"
+msgstr "Tingueu en compte que no podeu canviar l'amplada dels quadres 
verticals"
 
 #: ../panel-plugin/oc_config.c:316
 msgid "Clock Options"
@@ -478,18 +469,8 @@ msgid "fix time after suspend/hibernate"
 msgstr "primer cop després d'una suspensió/hibernació"
 
 #: ../panel-plugin/oc_config.c:415
-msgid ""
-"You only need this if you do short term (less than 5 hours) suspend or "
-"hibernate and your visible time does not include seconds. Under these "
-"circumstances it is possible that Orageclock shows time inaccurately unless "
-"you have this selected. (Selecting this prevents cpu and interrupt saving "
-"features from working.)"
-msgstr ""
-"Només us cal això si empreu suspensions o hibernacions curtes (menys de 5 "
-"hores) i l'hora que es mostra no ensenya els segons. Si es donen aquestes "
-"circumstàncies, i no marqueu aquesta opció, pot passar que el rellotge "
-"d'Orage mostri un hora no prou acurada. (Marcant-la evita que les funcions "
-"de desament de la CPU i les interrupcions funcionin.)"
+msgid "You only need this if you do short term (less than 5 hours) suspend or 
hibernate and your visible time does not include seconds. Under these 
circumstances it is possible that Orageclock shows time inaccurately unless you 
have this selected. (Selecting this prevents cpu and interrupt saving features 
from working.)"
+msgstr "Només us cal això si empreu suspensions o hibernacions curtes (menys 
de 5 hores) i l'hora que es mostra no ensenya els segons. Si es donen aquestes 
circumstàncies, i no marqueu aquesta opció, pot passar que el rellotge d'Orage 
mostri un hora no prou acurada. (Marcant-la evita que les funcions de desament 
de la CPU i les interrupcions funcionin.)"
 
 #: ../panel-plugin/oc_confi

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 15ab32f5d39586ae214ceb9d20c31762ecb85dc2 (commit)
   from da7271f9077282c48edbbb02e639f50bf801c50e (commit)

commit 15ab32f5d39586ae214ceb9d20c31762ecb85dc2
Author: Harald Servat 
Date:   Sun Dec 19 16:50:45 2010 +0100

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

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

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

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

diff --git a/po/ca.po b/po/ca.po
index a94c758..4db68de 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-12-08 17:08+\n"
+"POT-Creation-Date: 2010-12-19 11:08+\n"
 "PO-Revision-Date: \n"
 "Last-Translator: Carles Muñoz Gorriz \n"
 "Language-Team: catalan \n"
@@ -36,7 +36,7 @@ msgid "Customize the panel"
 msgstr "Personalitzar el quadre"
 
 #: ../panel-preferences.desktop.in.h:2
-#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2198
+#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2200
 #: ../migrate/main.c:84
 msgid "Panel"
 msgstr "Quadre"
@@ -59,38 +59,38 @@ msgid "Failed to open the documentation browser"
 msgstr "No s'ha pogut obrir el navegador de documentació"
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:873
-#: ../panel/panel-preferences-dialog.c:1029
+#: ../libxfce4panel/xfce-panel-plugin.c:887
+#: ../panel/panel-preferences-dialog.c:1048
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Esteu segur de voler suprimir «%s»?"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:878
-#: ../panel/panel-preferences-dialog.c:1032
+#: ../libxfce4panel/xfce-panel-plugin.c:892
+#: ../panel/panel-preferences-dialog.c:1051
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Si suprimiu l'element del quadre, es perdrà permanentment."
 
 #. move item
-#: ../libxfce4panel/xfce-panel-plugin.c:1038
+#: ../libxfce4panel/xfce-panel-plugin.c:1052
 msgid "_Move"
 msgstr "_Mou"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1072
+#: ../libxfce4panel/xfce-panel-plugin.c:1086
 msgid "Pane_l"
 msgstr "_Quadre"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1080 ../panel/panel-window.c:2210
+#: ../libxfce4panel/xfce-panel-plugin.c:1094 ../panel/panel-window.c:2212
 msgid "Add _New Items..."
 msgstr "Afegir elements _nous…"
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1091 ../panel/panel-window.c:2221
+#: ../libxfce4panel/xfce-panel-plugin.c:1105 ../panel/panel-window.c:2223
 msgid "Panel Pr_eferences..."
 msgstr "Pr_eferències del quadre…"
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1108 ../panel/panel-window.c:2237
+#: ../libxfce4panel/xfce-panel-plugin.c:1122 ../panel/panel-window.c:2239
 msgid "Log _Out"
 msgstr "_Sortir"
 
@@ -198,19 +198,19 @@ msgstr "Voleu iniciar el quadre? Si és el cas, 
assegureu-vos que deseu la sessi
 msgid "No running instance of %s was found"
 msgstr "No s'ha trobat una instància en marxa de %s"
 
-#: ../panel/panel-application.c:197
+#: ../panel/panel-application.c:196
 msgid "Failed to launch the migration application"
 msgstr "No s'ha pogut iniciar l'aplicació de migració"
 
-#: ../panel/panel-application.c:1429 ../plugins/actions/actions.c:413
+#: ../panel/panel-application.c:1423 ../plugins/actions/actions.c:413
 msgid "You have started X without session manager. Clicking Quit will close 
the X server."
 msgstr "Heu iniciat X sense un gestor de sessions. Premeu Sortir per a sortir 
del servidor X."
 
-#: ../panel/panel-application.c:1430 ../plugins/actions/actions.c:414
+#: ../panel/panel-application.c:1424 ../plugins/actions/actions.c:414
 msgid "Are you sure you want to quit the panel?"
 msgstr "Esteu segurs que voleu sortir del panell?"
 
-#: ../panel/panel-application.c:1438 ../plugins/actions/actions.c:422
+#: ../panel/panel-application.c:1432 ../plugins/actions/actions.c:422
 #, c-format
 msgid "Failed to execute command \"%s\""
 msgstr "No s'ha pogut llançar la comanda «%s»"
@@ -246,7 +246,7 @@ msgid "Please choose a panel for the new plugin:"
 msgstr "Trieu un quadre pel connector nou:"
 
 #. I18N: panel combo box in the preferences dialog
-#: ../panel/panel-dialogs.c:147 ../panel/panel-preferences-dialog.c:754
+#: ../panel/panel-dialogs.c:147 ../panel/panel-preferences-dialog.c:767
 #, c-format
 msgid "Panel %d"
 msgstr "Quadre %d"
@@ -286,41 +286,41 @@ msgstr "El connector del quadre \"%s\" ha finalitzat 
inesperadament. Voleu reini
 msgid "The plugin restarted more than once in the last %d seconds. If you 
press Execute the panel will try to restart the plugin otherwise it will be 
permanently removed from the panel."
 msgstr "El connector s'ha reiniciat més d'un cop en els darrers %d segons. Si 
premeu 

[Xfce4-commits] Creating annotated tag 1.0.2

2010-12-19 Thread Ali Abdallah
Updating annotated tag refs/tags/1.0.2
 as new annotated tag
 to 70aabbf80e495669fd2a07004cf7328507901663 (tag)
   succeeds 1.0.1-24-gae22bd7
  tagged by Ali Abdallah 
 on 2010-12-19 12:22 +

Ali Abdallah (1):
  Version 1.0.2

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


[Xfce4-commits] Fix minimim power level value to be 1%.

2010-12-19 Thread Ali Abdallah
Updating branch refs/heads/master
 to ae22bd7474e81221eb4d2372f33b90f3aa228b47 (commit)
   from 1fa099a888734289a23b422a90d51562649f4e87 (commit)

commit ae22bd7474e81221eb4d2372f33b90f3aa228b47
Author: Ali Abdallah 
Date:   Sun Dec 19 13:12:44 2010 +0100

Fix minimim power level value to be 1%.

 data/interfaces/xfpm-settings.ui |6 +++---
 src/xfpm-xfconf.c|2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/data/interfaces/xfpm-settings.ui b/data/interfaces/xfpm-settings.ui
index 78a618e..2614fb5 100644
--- a/data/interfaces/xfpm-settings.ui
+++ b/data/interfaces/xfpm-settings.ui
@@ -53,8 +53,8 @@
 1
   
   
-10
-5
+5
+1
 20
 1
   
@@ -129,7 +129,6 @@
 center-on-parent
 xfpm-ac-adapter
 dialog
-False
 Power manager 
settings
 
   
@@ -1235,6 +1234,7 @@
 True
 True
 ●
+none
 adjustment9
 
 
diff --git a/src/xfpm-xfconf.c b/src/xfpm-xfconf.c
index 3ac3a46..c87f2fc 100644
--- a/src/xfpm-xfconf.c
+++ b/src/xfpm-xfconf.c
@@ -239,7 +239,7 @@ xfpm_xfconf_class_init (XfpmXfconfClass *klass)
 NULL, NULL,
1,
20,
-   10,
+   5,
 G_PARAM_READWRITE));

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


[Xfce4-commits] Version 1.0.2

2010-12-19 Thread Ali Abdallah
Updating branch refs/heads/master
 to ef267cd6ce562e65c59e55373572286c8d906545 (commit)
   from ae22bd7474e81221eb4d2372f33b90f3aa228b47 (commit)

commit ef267cd6ce562e65c59e55373572286c8d906545
Author: Ali Abdallah 
Date:   Sun Dec 19 13:16:07 2010 +0100

Version 1.0.2

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

diff --git a/configure.ac.in b/configure.ac.in
index 1cf592c..936c6e8 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -1,7 +1,7 @@
 m4_define([intltool_minimum_version], [0.31])
 m4_define([xfpm_version_major],  [1])
 m4_define([xfpm_version_minor],  [0])
-m4_define([xfpm_version_micro],  [1])
+m4_define([xfpm_version_micro],  [2])
 m4_define([xfpm_version_build],  [])
 m4_define([xfpm_version_tag],[])
 m4_define([xfpm_version], 
[xfpm_version_major().xfpm_version_minor().xfpm_version_micro()ifelse(xfpm_version_tag(),
 [git], [xfpm_version_tag().xfpm_version_build()], [xfpm_version_tag()])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Avoid global shadow declaration.

2010-12-19 Thread Ali Abdallah
Updating branch refs/heads/master
 to 4189b1e3f44345badaff3283f4df8431bb7f7bb8 (commit)
   from 4b4907b1a109f1f6e4f2d97810956f0ad48d1515 (commit)

commit 4189b1e3f44345badaff3283f4df8431bb7f7bb8
Author: Ali Abdallah 
Date:   Sun Dec 19 13:02:33 2010 +0100

Avoid global shadow declaration.

 common/xfpm-common.c |   10 ++--
 src/egg-idletime.c   |  120 +-
 src/xfpm-backlight.c |6 +-
 src/xfpm-dpms.c  |   10 ++--
 src/xfpm-power.c |6 +-
 5 files changed, 76 insertions(+), 76 deletions(-)

diff --git a/common/xfpm-common.c b/common/xfpm-common.c
index cde612a..039c05c 100644
--- a/common/xfpm-common.c
+++ b/common/xfpm-common.c
@@ -53,16 +53,16 @@ GtkBuilder *xfpm_builder_new_from_string (const gchar *ui, 
GError **error)
 }
 
 static void
-xfpm_link_browser (GtkAboutDialog *about, const gchar *link, gpointer data)
+xfpm_link_browser (GtkAboutDialog *about, const gchar *linkto, gpointer data)
 {
 gchar *cmd;
 
-cmd = g_strdup_printf ("%s %s","xdg-open", link);
+cmd = g_strdup_printf ("%s %s","xdg-open", linkto);
 
 if ( !g_spawn_command_line_async (cmd, NULL) )
 {
g_free (cmd);
-   cmd = g_strdup_printf ("%s %s","xfbrowser4", link);
+   cmd = g_strdup_printf ("%s %s","xfbrowser4", linkto);
g_spawn_command_line_async (cmd, NULL);
 }
 g_free (cmd);
@@ -70,9 +70,9 @@ xfpm_link_browser (GtkAboutDialog *about, const gchar *link, 
gpointer data)
 }
 
 static void
-xfpm_link_mailto (GtkAboutDialog *about, const gchar *link, gpointer data)
+xfpm_link_mailto (GtkAboutDialog *about, const gchar *linkto, gpointer data)
 {
-gchar *cmd = g_strdup_printf( "%s %s", "xdg-email", link);
+gchar *cmd = g_strdup_printf( "%s %s", "xdg-email", linkto);
 
 g_spawn_command_line_async (cmd, NULL);
 
diff --git a/src/egg-idletime.c b/src/egg-idletime.c
index 1d3e579..9db5fd7 100644
--- a/src/egg-idletime.c
+++ b/src/egg-idletime.c
@@ -105,7 +105,7 @@ egg_idletime_get_time (EggIdletime *idletime)
  * egg_idletime_xsync_alarm_set:
  */
 static void
-egg_idletime_xsync_alarm_set (EggIdletime *idletime, EggIdletimeAlarm *alarm, 
EggIdletimeAlarmType alarm_type)
+egg_idletime_xsync_alarm_set (EggIdletime *idletime, EggIdletimeAlarm 
*eggalarm, EggIdletimeAlarmType alarm_type)
 {
XSyncAlarmAttributes attr;
XSyncValue delta;
@@ -114,9 +114,9 @@ egg_idletime_xsync_alarm_set (EggIdletime *idletime, 
EggIdletimeAlarm *alarm, Eg
 
/* just remove it */
if (alarm_type == EGG_IDLETIME_ALARM_TYPE_DISABLED) {
-   if (alarm->xalarm) {
-   XSyncDestroyAlarm (idletime->priv->dpy, alarm->xalarm);
-   alarm->xalarm = None;
+   if (eggalarm->xalarm) {
+   XSyncDestroyAlarm (idletime->priv->dpy, 
eggalarm->xalarm);
+   eggalarm->xalarm = None;
}
return;
}
@@ -132,15 +132,15 @@ egg_idletime_xsync_alarm_set (EggIdletime *idletime, 
EggIdletimeAlarm *alarm, Eg
attr.trigger.counter = idletime->priv->idle_counter;
attr.trigger.value_type = XSyncAbsolute;
attr.trigger.test_type = test;
-   attr.trigger.wait_value = alarm->timeout;
+   attr.trigger.wait_value = eggalarm->timeout;
attr.delta = delta;
 
flags = XSyncCACounter | XSyncCAValueType | XSyncCATestType | 
XSyncCAValue | XSyncCADelta;
 
-   if (alarm->xalarm)
-   XSyncChangeAlarm (idletime->priv->dpy, alarm->xalarm, flags, 
&attr);
+   if (eggalarm->xalarm)
+   XSyncChangeAlarm (idletime->priv->dpy, eggalarm->xalarm, flags, 
&attr);
else
-   alarm->xalarm = XSyncCreateAlarm (idletime->priv->dpy, flags, 
&attr);
+   eggalarm->xalarm = XSyncCreateAlarm (idletime->priv->dpy, 
flags, &attr);
 }
 
 /**
@@ -150,19 +150,19 @@ void
 egg_idletime_alarm_reset_all (EggIdletime *idletime)
 {
guint i;
-   EggIdletimeAlarm *alarm;
+   EggIdletimeAlarm *eggalarm;
 
g_return_if_fail (EGG_IS_IDLETIME (idletime));
 
/* reset all the alarms (except the reset alarm) to their timeouts */
for (i=1; ipriv->array->len; i++) {
-   alarm = g_ptr_array_index (idletime->priv->array, i);
-   egg_idletime_xsync_alarm_set (idletime, alarm, 
EGG_IDLETIME_ALARM_TYPE_POSITIVE);
+   eggalarm = g_ptr_array_index (idletime->priv->array, i);
+   egg_idletime_xsync_alarm_set (idletime, eggalarm, 
EGG_IDLETIME_ALARM_TYPE_POSITIVE);
}
 
/* set the reset alarm to be disabled */
-   alarm = g_ptr_array_index (idletime->priv->array, 0);
-   egg_idletime_xsync_alarm_set (idletime, alarm, 
EGG_IDLETIME_ALARM_TYPE_DISABLED);
+   eggalarm = g_ptr_array_index (idletime->priv->array, 0);
+   egg_idletime_xsync_alarm_set (idletime, eggalarm, 
EGG_IDLETIME_ALARM_TYPE_DISABLED);
 
/* emit signal so

[Xfce4-commits] Wrong data passed to callback function, fix bug #7007.

2010-12-19 Thread Ali Abdallah
Updating branch refs/heads/master
 to 1fa099a888734289a23b422a90d51562649f4e87 (commit)
   from 4189b1e3f44345badaff3283f4df8431bb7f7bb8 (commit)

commit 1fa099a888734289a23b422a90d51562649f4e87
Author: Ali Abdallah 
Date:   Sun Dec 19 13:02:51 2010 +0100

Wrong data passed to callback function, fix bug #7007.

 src/xfpm-manager.c |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/xfpm-manager.c b/src/xfpm-manager.c
index b17c8f9..a91f9c2 100644
--- a/src/xfpm-manager.c
+++ b/src/xfpm-manager.c
@@ -523,11 +523,11 @@ void xfpm_manager_start (XfpmManager *manager)
 g_signal_connect (manager->priv->idle, "alarm-expired",
  G_CALLBACK (xfpm_manager_alarm_timeout_cb), manager);
 
-g_signal_connect (manager->priv->conf, "notify::" ON_AC_INACTIVITY_TIMEOUT,
- G_CALLBACK (xfpm_manager_set_idle_alarm_on_ac), manager);
+g_signal_connect_swapped (manager->priv->conf, "notify::" 
ON_AC_INACTIVITY_TIMEOUT,
+ G_CALLBACK (xfpm_manager_set_idle_alarm_on_ac), 
manager);
  
-g_signal_connect (manager->priv->conf, "notify::" 
ON_BATTERY_INACTIVITY_TIMEOUT,
- G_CALLBACK (xfpm_manager_set_idle_alarm_on_battery), 
manager);
+g_signal_connect_swapped (manager->priv->conf, "notify::" 
ON_BATTERY_INACTIVITY_TIMEOUT,
+ G_CALLBACK 
(xfpm_manager_set_idle_alarm_on_battery), manager);
 
 xfpm_manager_set_idle_alarm (manager);
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to d97f0e379c2b912f6c287fe0a161809017550e48 (commit)
   from cc120f00542d0c83f594ea6943c397fd6a359364 (commit)

commit d97f0e379c2b912f6c287fe0a161809017550e48
Author: Andhika Padmawan 
Date:   Sun Dec 19 13:02:17 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  407 +++---
 1 files changed, 124 insertions(+), 283 deletions(-)

diff --git a/po/id.po b/po/id.po
index b69131c..3600927 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2003-2006 os-cillation e.K.
 # This file is distributed under the same license as the terminal package.
 # Andhika Padmawan , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Terminal 0.2.10\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-04-12 19:57+0200\n"
+"POT-Creation-Date: 2010-12-19 11:01+\n"
 "PO-Revision-Date: 2010-05-31 23:13+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
@@ -116,7 +116,7 @@ msgstr ""
 "\n"
 "Silakan laporkan kutu ke <%s>.\n"
 
-#: ../terminal/main.c:250
+#: ../terminal/main.c:254
 #, c-format
 msgid "Unable to register terminal service: %s\n"
 msgstr "Tidak dapat mendaftarkan layanan terminal: %s\n"
@@ -126,16 +126,20 @@ msgstr "Tidak dapat mendaftarkan layanan terminal: %s\n"
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Tali geometri \"%s\" tidak benar\n"
 
-#: ../terminal/terminal-dbus.c:107
+#: ../terminal/terminal-dbus.c:113
 msgid "User id mismatch"
 msgstr "ID pengguna tidak cocok"
 
-#: ../terminal/terminal-dbus.c:133
+#: ../terminal/terminal-dbus.c:119
+msgid "Display mismatch"
+msgstr "Tampilan tidak cocok"
+
+#: ../terminal/terminal-dbus.c:145
 #, c-format
 msgid "D-BUS message bus disconnected, exiting...\n"
 msgstr "Bus pesan D-BUS terputus, keluar...\n"
 
-#: ../terminal/terminal-dbus.c:195
+#: ../terminal/terminal-dbus.c:207
 #, c-format
 msgid "Unable to register object %s"
 msgstr "Tidak dapat mendaftarkan objek %s"
@@ -159,12 +163,8 @@ msgstr "Manual pengguna %s tidak terinstal di komputer 
anda"
 
 #: ../terminal/terminal-dialogs.c:218
 #, c-format
-msgid ""
-"You can read the user manual online. This manual may however not exactly "
-"match your %s version."
-msgstr ""
-"Anda dapat membaca manual pengguna daring. Akan tetapi manual ini tidak "
-"cocok sekali dengan versi %s anda."
+msgid "You can read the user manual online. This manual may however not 
exactly match your %s version."
+msgstr "Anda dapat membaca manual pengguna daring. Akan tetapi manual ini 
tidak cocok sekali dengan versi %s anda."
 
 #: ../terminal/terminal-dialogs.c:220
 msgid "User manual is missing"
@@ -181,48 +181,28 @@ msgstr "Gagal ketika membuka peramban dokumentasi"
 
 #: ../terminal/terminal-options.c:210
 #, c-format
-msgid ""
-"Option \"--default-display\" requires specifying the default X display as "
-"its parameter"
-msgstr ""
-"Opsi \"--default-display\" membutuhkan penentuan tampilan X standar sebagai "
-"parameternya"
+msgid "Option \"--default-display\" requires specifying the default X display 
as its parameter"
+msgstr "Opsi \"--default-display\" membutuhkan penentuan tampilan X standar 
sebagai parameternya"
 
 #: ../terminal/terminal-options.c:225
 #, c-format
-msgid ""
-"Option \"--default-working-directory\" requires specifying the default "
-"working directory as its parameter"
-msgstr ""
-"Opsi \"--default-working-directory\" membutuhkan penentuan direktori kerja "
-"standar sebagai parameternya"
+msgid "Option \"--default-working-directory\" requires specifying the default 
working directory as its parameter"
+msgstr "Opsi \"--default-working-directory\" membutuhkan penentuan direktori 
kerja standar sebagai parameternya"
 
 #: ../terminal/terminal-options.c:241
 #, c-format
-msgid ""
-"Option \"--execute/-x\" requires specifying the command to run on the rest "
-"of the command line"
-msgstr ""
-"Opsi \"--execute/-x\" membutuhkan penentuan perintah yang akan dijalankan di "
-"sisa baris perintah"
+msgid "Option \"--execute/-x\" requires specifying the command to run on the 
rest of the command line"
+msgstr "Opsi \"--execute/-x\" membutuhkan penentuan perintah yang akan 
dijalankan di sisa baris perintah"
 
 #: ../terminal/terminal-options.c:258
 #, c-format
-msgid ""
-"Option \"--command/-e\" requires specifying the command to run as its "
-"parameter"
-msgstr ""
-"Opsi \"--command/-e\" membutuhkan penentuan perintah yang akan dijalankan "
-"sebagai parameternya"
+msgid "Option \"--command/-e\" requires specifying the command to run as its 
parameter"
+msgstr "Opsi \"--command/-e\" membutuhkan penentuan perintah yang akan 
dijalankan sebagai parameternya"
 
 #: ../terminal/terminal-options.c:275
 #, c-format
-msgid ""
-"Option \"--working-directory\" requires specifying the working direct

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to d8811adbe2f5ba498bc578f0c6e515c447897f63 (commit)
   from 8b94560dc563c913cf67a798ebb1f93a5f5f2274 (commit)

commit d8811adbe2f5ba498bc578f0c6e515c447897f63
Author: Andhika Padmawan 
Date:   Sun Dec 19 13:00:26 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  146 ++
 1 files changed, 61 insertions(+), 85 deletions(-)

diff --git a/po/id.po b/po/id.po
index 45ecebc..a619e40 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2010 THE gigolo'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the gigolo package.
 # Andhika Padmawan , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: gigolo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-01 12:06+0200\n"
+"POT-Creation-Date: 2010-12-19 11:04+\n"
 "PO-Revision-Date: 2010-05-31 22:53+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
-"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
 
 #: ../src/main.c:46
 msgid "Ignore running instances, enforce opening a new instance"
@@ -34,9 +34,7 @@ msgstr "Tampilkan informasi versi"
 
 #: ../src/main.c:79
 msgid "- a simple frontend to easily connect to remote filesystems"
-msgstr ""
-"- ujung depan sederhana untuk memudahkan sambungan ke sistem berkas jarak "
-"jauh"
+msgstr "- ujung depan sederhana untuk memudahkan sambungan ke sistem berkas 
jarak jauh"
 
 #: ../src/common.c:77
 msgid "Unix Device"
@@ -70,7 +68,7 @@ msgstr "WebDAV"
 msgid "WebDAV (secure)"
 msgstr "WebDAV (aman)"
 
-#: ../src/common.c:93 ../src/window.c:1367
+#: ../src/common.c:93 ../src/window.c:1371
 msgid "Network"
 msgstr "Jaringan"
 
@@ -86,163 +84,157 @@ msgstr "Foto"
 msgid "Custom Location"
 msgstr "Lokasi Suai"
 
-#: ../src/window.c:257
+#: ../src/window.c:261
 #, c-format
 msgid "Connecting to \"%s\""
 msgstr "Menyambung ke \"%s\""
 
-#: ../src/window.c:425 ../gigolo.desktop.in.h:1
-msgid "A simple frontend to easily connect to remote filesystems"
-msgstr ""
-"Ujung depan sederhana untuk memudahkan sambungan ke sistem berkas jarak jauh"
+#: ../src/window.c:429
+msgid "A simple frontend to easily connect/mount to local and remote 
filesystems"
+msgstr "Ujung depan sederhana untuk memudahkan sambungan/kaitan ke sistem 
berkas lokal dan jarak jauh"
 
-#: ../src/window.c:426
+#: ../src/window.c:430
 msgid "Copyright 2008-2010 Enrico Tröger"
 msgstr "Hak Cipta 2008-2010 Enrico Tröger"
 
-#: ../src/window.c:429
+#: ../src/window.c:433
 msgid "translator-credits"
 msgstr "Andhika Padmawan , 2010."
 
-#: ../src/window.c:461
+#: ../src/window.c:465
 msgid "Gigolo can use the following protocols provided by GVfs:"
 msgstr "Gigolo dapat menggunakan protokol berikut yang disediakan oleh GVfs:"
 
-#: ../src/window.c:558
+#: ../src/window.c:562
 #, c-format
 msgid "The command '%s' failed"
 msgstr "Perintah '%s' gagal"
 
-#: ../src/window.c:559 ../src/window.c:686 ../src/bookmarkeditdialog.c:214
+#: ../src/window.c:563 ../src/window.c:690 ../src/bookmarkeditdialog.c:214
 #: ../src/bookmarkeditdialog.c:233 ../src/bookmarkeditdialog.c:246
 #: ../src/bookmarkeditdialog.c:257 ../src/bookmarkeditdialog.c:268
 msgid "Error"
 msgstr "Galat"
 
-#: ../src/window.c:1153
+#: ../src/window.c:1157
 msgid "_File"
 msgstr "_Berkas"
 
-#: ../src/window.c:1154
+#: ../src/window.c:1158
 msgid "_Edit"
 msgstr "_Sunting"
 
-#: ../src/window.c:1155
+#: ../src/window.c:1159
 msgid "_Actions"
 msgstr "_Aksi"
 
-#: ../src/window.c:1156
+#: ../src/window.c:1160
 msgid "_View"
 msgstr "_Tampilan"
 
-#: ../src/window.c:1157
+#: ../src/window.c:1161
 msgid "_Help"
 msgstr "Ba_ntuan"
 
-#: ../src/window.c:1161 ../src/browsenetworkpanel.c:453
+#: ../src/window.c:1165 ../src/browsenetworkpanel.c:453
 #: ../src/browsenetworkpanel.c:497
 msgid "Create _Bookmark"
 msgstr "Buat _Penanda"
 
-#: ../src/window.c:1163
+#: ../src/window.c:1167
 msgid "_Edit Bookmarks"
 msgstr "_Sunting Penanda"
 
-#: ../src/window.c:1164
+#: ../src/window.c:1168
 msgid "Open the bookmark manager to add, edit or delete bookmarks"
 msgstr "Buka manager penanda untuk menambah, menyunting atau menghapus penanda"
 
-#: ../src/window.c:1168
+#: ../src/window.c:1172
 msgid "Disconnect the selected resource"
 msgstr "Putuskan sumber daya terpilih"
 
-#: ../src/window.c:1170
+#: ../src/window.c:1174
 msgid "Open the selected resource with a file manager"
 msgstr "Buka sumber daya terpilih dengan manajer berkas"
 
-#: ../src/window.c:1171
+#: ../src/window.c:1175
 msgid "Copy _URI"
 msgstr "Salin _URI"
 
-#: ../src/window.c:1172
+#: ../src/window.c:1176
 msgid "Quit Gigolo"
 msgstr "Keluar Gigolo"
 
-#: ../src/window.c:1173
+#: ../src/window.c:1177
 msgid "Online Help

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to fe7e0b8a28c805e76f37c073c30540c79fb86f40 (commit)
   from def239f143f5f6aaf717f7edecb7cd596444e426 (commit)

commit fe7e0b8a28c805e76f37c073c30540c79fb86f40
Author: Andhika Padmawan 
Date:   Sun Dec 19 12:57:13 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |   65 -
 1 files changed, 38 insertions(+), 27 deletions(-)

diff --git a/po/id.po b/po/id.po
index 02c22cd..29e3346 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,22 +2,22 @@
 # Copyright (C) 2008 THE xfce'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce package.
 # padmawan , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce 4-notifyd\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-07 18:14+0100\n"
+"POT-Creation-Date: 2010-12-19 11:05+\n"
 "PO-Revision-Date: 2008-11-16 20:37+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
-"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
 
 #: ../xfce4-notifyd/main.c:50 ../xfce4-notifyd/main.c:60
-#: ../xfce4-notifyd-config/main.c:229
+#: ../xfce4-notifyd-config/main.c:257
 msgid "Xfce Notify Daemon"
 msgstr "Jurik Notifikasi Xfce"
 
@@ -30,22 +30,17 @@ msgstr "Opsi tak dikenal \"%s\"\n"
 msgid "Unable to start notification daemon"
 msgstr "Tak dapat menjalankan jurik notifikasi"
 
-#: ../xfce4-notifyd/xfce-notify-daemon.c:1073
+#: ../xfce4-notifyd/xfce-notify-daemon.c:1134
 #, c-format
 msgid "Unable to connect to D-Bus session bus"
 msgstr "Tak dapat menyambung ke bus sesi D-Bus"
 
-#: ../xfce4-notifyd/xfce-notify-daemon.c:1090
-#, fuzzy, c-format
-msgid "Another notification xndaemon is already running"
-msgstr "Jurik notifikasi lainnya telah berjalan"
-
-#: ../xfce4-notifyd/xfce-notify-window.c:756
+#: ../xfce4-notifyd/xfce-notify-daemon.c:1151
 #, c-format
-msgid "%s could not be launched"
-msgstr ""
+msgid "Another notification xndaemon is already running"
+msgstr "Notifikasi xndaemon lainnya telah berjalan"
 
-#: ../xfce4-notifyd/xfce-notify-window.c:857
+#: ../xfce4-notifyd/xfce-notify-window.c:809
 msgid "image: "
 msgstr "citra:"
 
@@ -53,44 +48,52 @@ msgstr "citra:"
 msgid "Theme"
 msgstr "Tema"
 
-#: ../xfce4-notifyd-config/main.c:231
+#: ../xfce4-notifyd-config/main.c:223
+msgid "notify-send \"Notification Preview\" \"This is how notifications will 
look like\""
+msgstr "notify-send \"Notification Preview\" \"Ini adalah bagaimana notifikasi 
akan tampak\""
+
+#: ../xfce4-notifyd-config/main.c:227
+msgid "Notification preview failed"
+msgstr "Pratilik notifikasi gagal"
+
+#: ../xfce4-notifyd-config/main.c:259
 msgid "Settings daemon is unavailable"
 msgstr "Jurik pengaturan tak tersedia"
 
-#: ../xfce4-notifyd-config/main.c:286
+#: ../xfce4-notifyd-config/main.c:314
 msgid "Display version information"
 msgstr "Tampilkan informasi versi"
 
-#: ../xfce4-notifyd-config/main.c:287
+#: ../xfce4-notifyd-config/main.c:315
 msgid "Settings manager socket"
 msgstr "Soket manajer pengaturan"
 
-#: ../xfce4-notifyd-config/main.c:287
+#: ../xfce4-notifyd-config/main.c:315
 msgid "SOCKET_ID"
 msgstr "SOCKET_ID"
 
-#: ../xfce4-notifyd-config/main.c:297
+#: ../xfce4-notifyd-config/main.c:325
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Ketik '%s --help' untuk penggunaan."
 
-#: ../xfce4-notifyd-config/main.c:309
+#: ../xfce4-notifyd-config/main.c:338
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
 msgstr "Dirilis di bawah Lisensi Publik Umum GNU, versi 2\n"
 
-#: ../xfce4-notifyd-config/main.c:310
+#: ../xfce4-notifyd-config/main.c:339
 #, c-format
 msgid "Please report bugs to %s.\n"
 msgstr "Silakan laporkan kutu ke %s.\n"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:1
 msgid "Bottom left"
-msgstr ""
+msgstr "Kiri bawah"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:2
 msgid "Bottom right"
-msgstr ""
+msgstr "Kanan bawah"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:3
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
@@ -108,25 +111,33 @@ msgstr "Notifikasi"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:6
 msgid "Top left"
-msgstr ""
+msgstr "Kiri atas"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:7
 msgid "Top right"
-msgstr ""
+msgstr "Kanan atas"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:8
 msgid "_Disappear after:"
 msgstr "_Hilang setelah:"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:9
+msgid "_Effect:"
+msgstr "_Efek:"
+
+#: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:10
 msgid "_Fade to transparent"
 msgstr "_Pudar ke transparan"
 
-#: ../xfce4-notifyd-config/xfce4-notifyd-config.

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 0285c85f3604de33550741ea3eb15b0985b5c34d (commit)
   from bc8f78a596ea0e5ab538f83a39d02320017964f8 (commit)

commit 0285c85f3604de33550741ea3eb15b0985b5c34d
Author: Andhika Padmawan 
Date:   Sun Dec 19 12:51:25 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |   80 ++---
 1 files changed, 55 insertions(+), 25 deletions(-)

diff --git a/po/id.po b/po/id.po
index 69b3dad..a11d33a 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-02 10:11+\n"
+"POT-Creation-Date: 2010-12-19 11:11+\n"
 "PO-Revision-Date: 2008-12-21 21:53+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
@@ -36,26 +36,26 @@ msgid "Session manager socket"
 msgstr "Soket manajer sesi"
 
 #: ../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 "ID SOKET"
 
 #: ../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 "Informasi versi"
 
 #: ../settings-dialogs/tweaks-settings.c:440
-#: ../settings-dialogs/workspace-settings.c:378
-#: ../settings-dialogs/xfwm4-settings.c:948
+#: ../settings-dialogs/workspace-settings.c:388
+#: ../settings-dialogs/xfwm4-settings.c:942
 msgid "."
 msgstr "."
 
 #: ../settings-dialogs/tweaks-settings.c:444
-#: ../settings-dialogs/workspace-settings.c:382
-#: ../settings-dialogs/xfwm4-settings.c:952
+#: ../settings-dialogs/workspace-settings.c:392
+#: ../settings-dialogs/xfwm4-settings.c:946
 #, c-format
 msgid ""
 "%s: %s\n"
@@ -64,17 +64,17 @@ msgstr ""
 "%s: %s\n"
 "Coba %s --help untuk melihat senarai penuh opsi baris perintah yang 
tersedia.\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 "Ruang kerja %d"
 
-#: ../settings-dialogs/workspace-settings.c:252
+#: ../settings-dialogs/workspace-settings.c:280
 msgid "Workspace Name"
 msgstr "Nama Ruang Kerja"
 
-#: ../settings-dialogs/workspace-settings.c:360
+#: ../settings-dialogs/workspace-settings.c:370
 #: ../settings-dialogs/xfwm4-settings.c:310
 msgid "Settings manager socket"
 msgstr "Pengaturan soket manajer"
@@ -594,33 +594,33 @@ msgstr "Hapus ruang kerja terakhir"
 msgid "Delete active workspace"
 msgstr "Hapus ruang kerja aktif"
 
-#: ../settings-dialogs/xfwm4-settings.c:450
+#: ../settings-dialogs/xfwm4-settings.c:448
 msgid "Theme"
 msgstr "Tema"
 
-#: ../settings-dialogs/xfwm4-settings.c:599
+#: ../settings-dialogs/xfwm4-settings.c:597
 msgid "Action"
 msgstr "Aksi"
 
-#: ../settings-dialogs/xfwm4-settings.c:604
+#: ../settings-dialogs/xfwm4-settings.c:602
 msgid "Shortcut"
 msgstr "Jalan pintas"
 
-#: ../settings-dialogs/xfwm4-settings.c:977
+#: ../settings-dialogs/xfwm4-settings.c:971
 #, c-format
 msgid "Failed to initialize xfconf. Reason: %s"
 msgstr "Gagal menginisialisasi xfconf. Alasan: %s"
 
-#: ../settings-dialogs/xfwm4-settings.c:988
+#: ../settings-dialogs/xfwm4-settings.c:982
 msgid "Could not create the settings dialog."
 msgstr "Tak dapat membuat dialog pengaturan."
 
-#: ../settings-dialogs/xfwm4-settings.c:1880
-#: ../settings-dialogs/xfwm4-settings.c:1881
+#: ../settings-dialogs/xfwm4-settings.c:1869
+#: ../settings-dialogs/xfwm4-settings.c:1870
 msgid "Reset to Defaults"
 msgstr "Kembalikan ke Standar"
 
-#: ../settings-dialogs/xfwm4-settings.c:1882
+#: ../settings-dialogs/xfwm4-settings.c:1871
 msgid "This will reset all shortcuts to their default values. Do you really 
want to do this?"
 msgstr "Ini akan mengatur ulang semua jalan pintas ke nilai standar mereka. 
Anda yakin ingin melakukan ini?"
 
@@ -830,16 +830,49 @@ msgid "_Number of workspaces:"
 msgstr "_Jumlah ruang kerja:"
 
 #. TRANSLATORS: "(on %s)" is like "running on" the name of the other host
-#: ../src/client.c:182
+#: ../src/client.c:184
 #, c-format
 msgid "%s (on %s)"
 msgstr "%s (di %s)"
 
-#: ../src/main.c:138
+#: ../src/main.c:140
 #, c-format
 msgid "%s: Segmentation fault"
 msgstr "%s: Galat segmentasi"
 
+#: ../src/main.c:534
+msgid "Fork to the background"
+msgstr "Jalankan di latar belakang"
+
+#: ../src/main.c:536
+msgid "Fork to the background (not supported)"
+msgstr "Jalankan di latar belakang (tidak didukung)"
+
+#: ../src/main.c:539
+msgid "Set the compositor mode"
+msgstr "Atur mode kompositor"
+
+#: ../src/main.c:541
+msgid "S

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to da7271f9077282c48edbbb02e639f50bf801c50e (commit)
   from e96fee10f405eac7981b8356f3c3831059fa4544 (commit)

commit da7271f9077282c48edbbb02e639f50bf801c50e
Author: Andhika Padmawan 
Date:   Sun Dec 19 12:43:55 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  335 ++
 1 files changed, 184 insertions(+), 151 deletions(-)

diff --git a/po/id.po b/po/id.po
index cab3378..1a16fea 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-07 05:07+\n"
-"PO-Revision-Date: 2010-07-01 11:37+0700\n"
+"POT-Creation-Date: 2010-12-19 11:08+\n"
+"PO-Revision-Date: 2010-12-19 18:49+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
 "MIME-Version: 1.0\n"
@@ -17,20 +17,22 @@ msgstr ""
 "Language: id\n"
 
 #: ../panel-desktop-handler.desktop.in.h:1
-msgid "Create Launcher on Xfce Panel"
-msgstr "Tambahkan Menu Utama pada panel Xfce"
+msgid "Add a new launcher to the panel based on the information of this 
desktop file"
+msgstr "Tambah sebuah peluncur ke panel berdasarkan informasi dari berkas 
desktop ini"
 
 #: ../panel-desktop-handler.desktop.in.h:2
-msgid "Create a new launcher on the Xfce Panel"
-msgstr "Tambahkan Menu Utama baru pada panel Xfce"
+msgid "Create Launcher on the panel"
+msgstr "Buat Peluncur di panel"
 
 #: ../panel-preferences.desktop.in.h:1
-msgid "Customize the Xfce Panel"
-msgstr "Kustomisasi Panel Xfce"
+msgid "Customize the panel"
+msgstr "Sesuaikan panel"
 
 #: ../panel-preferences.desktop.in.h:2
-msgid "Panel Preferences"
-msgstr "Konfigurasi Panel"
+#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:2200
+#: ../migrate/main.c:84
+msgid "Panel"
+msgstr "Panel"
 
 #: ../common/panel-utils.c:155
 msgid "_Read Online"
@@ -41,8 +43,8 @@ msgid "You can read the user manual online. This manual may 
however not exactly
 msgstr "Anda dapat membaca buku petunjuk secara daring, namun begitu mungkin 
saja terdapat perbedaan versi dengan panel yang anda gunakan."
 
 #: ../common/panel-utils.c:158
-msgid "The Xfce Panel user manual is not installed on your computer"
-msgstr "Buku petunjuk Panel Xfce tidak terpasang pada komputer anda"
+msgid "The user manual is not installed on your computer"
+msgstr "Manual pengguna tidak terpasang pada komputer anda"
 
 #. display an error message to the user
 #: ../common/panel-utils.c:171
@@ -50,74 +52,74 @@ msgid "Failed to open the documentation browser"
 msgstr "Gagal membuka peramban dokumentasi"
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:873
-#: ../panel/panel-preferences-dialog.c:1029
+#: ../libxfce4panel/xfce-panel-plugin.c:887
+#: ../panel/panel-preferences-dialog.c:1048
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Anda yakin ingin menghapus '%s'?"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:878
-#: ../panel/panel-preferences-dialog.c:1032
+#: ../libxfce4panel/xfce-panel-plugin.c:892
+#: ../panel/panel-preferences-dialog.c:1051
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Item yang anda hapus dari panel akan dibuang secara permanen."
 
 #. move item
-#: ../libxfce4panel/xfce-panel-plugin.c:1038
+#: ../libxfce4panel/xfce-panel-plugin.c:1052
 msgid "_Move"
 msgstr "_Pindah"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1072
-msgid "_Xfce Panel"
-msgstr "Panel _Xfce"
+#: ../libxfce4panel/xfce-panel-plugin.c:1086
+msgid "Pane_l"
+msgstr "Pane_l"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1080 ../panel/panel-window.c:2140
+#: ../libxfce4panel/xfce-panel-plugin.c:1094 ../panel/panel-window.c:2212
 msgid "Add _New Items..."
 msgstr "_Tambah Item Baru..."
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1091 ../panel/panel-window.c:2151
+#: ../libxfce4panel/xfce-panel-plugin.c:1105 ../panel/panel-window.c:2223
 msgid "Panel Pr_eferences..."
 msgstr "_Konfigurasi Panel"
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1108 ../panel/panel-window.c:2167
+#: ../libxfce4panel/xfce-panel-plugin.c:1122 ../panel/panel-window.c:2239
 msgid "Log _Out"
 msgstr "_Keluar"
 
-#: ../panel/main.c:77
+#: ../panel/main.c:78
 msgid "Show the 'Panel Preferences' dialog"
 msgstr "Tampilkan dialog 'Konfigurasi Panel'"
 
-#: ../panel/main.c:77 ../panel/main.c:78
+#: ../panel/main.c:78 ../panel/main.c:79
 msgid "PANEL-NUMBER"
 msgstr "NOMOR-PANEL"
 
-#: ../panel/main.c:78
+#: ../panel/main.c:79
 msgid "Show the 'Add New Items' dialog"
 msgstr "Tampilkan dialog 'Tambah Item Baru'"
 
-#: ../panel/main.c:79
+#: ../panel/main.c:80
 msgid "Save the panel configuration"
 msgstr "Simpan konfigurasi panel"
 
-#: ../pan

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 96ef593a813a439617c5de00fcb26b5b809c1e44 (commit)
   from 011ecc73115e3bb4857eba181c74ef6f05fd81dc (commit)

commit 96ef593a813a439617c5de00fcb26b5b809c1e44
Author: Andhika Padmawan 
Date:   Sun Dec 19 12:32:16 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

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

diff --git a/po/id.po b/po/id.po
index b9dce18..b8133db 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2007 Jannis Pohlmann.
 # This file is distributed under the same license as the xfce4menu package.
 # Andhika Padmawan , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfce 4menu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 15:29+0100\n"
+"POT-Creation-Date: 2010-12-19 11:04+\n"
 "PO-Revision-Date: 2010-06-01 22:35+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
-"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
 
 #: ../data/xfce/xfce-accessories.directory.in.h:1
 msgid "Accessories"
@@ -123,7 +123,7 @@ msgstr "Utilitas sistem"
 #: ../garcon/garcon-menu.c:698
 #, c-format
 msgid "File \"%s\" not found"
-msgstr ""
+msgstr "Berkas \"%s\" tak ditemukan"
 
 #: ../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] l10n: Updated Indonesian (id) translation to 100%

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 5758c9e244efc0f2c5d73d003e4fc0589c6d8e42 (commit)
   from a2b833a23ca1024eaf5de31d80575573de6ba457 (commit)

commit 5758c9e244efc0f2c5d73d003e4fc0589c6d8e42
Author: Andhika Padmawan 
Date:   Sun Dec 19 12:31:12 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  157 +-
 1 files changed, 43 insertions(+), 114 deletions(-)

diff --git a/po/id.po b/po/id.po
index 4376837..b7d118a 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2002-2007 The Xfce development team.
 # This file is distributed under the same license as the xfce-utils package.
 # Andhika Padmawan , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce-utils 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 15:39+0100\n"
+"POT-Creation-Date: 2010-12-19 11:08+\n"
 "PO-Revision-Date: 2008-12-21 21:51+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
-"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: id\n"
 
 #: ../xfce4-about/main.c:52
 msgid "Version information"
@@ -33,72 +33,48 @@ msgid "Panel"
 msgstr "Panel"
 
 #: ../xfce4-about/main.c:75
-msgid ""
-"Program launchers, window buttons, applications menu, workspace switcher and "
-"more."
-msgstr ""
-"Peluncur program, tombol jendela, menu aplikasi, pengganti ruang kerja dan "
-"lainnya."
+msgid "Program launchers, window buttons, applications menu, workspace 
switcher and more."
+msgstr "Peluncur program, tombol jendela, menu aplikasi, pengganti ruang kerja 
dan lainnya."
 
 #: ../xfce4-about/main.c:79
 msgid "Desktop Manager"
 msgstr "Manajer Desktop"
 
 #: ../xfce4-about/main.c:80
-msgid ""
-"Sets the background color or image with optional application menu or icons "
-"for minimized applications or launchers, devices and folders."
-msgstr ""
-"Atur warna atau gambar latar belakang dengan menu atau ikon aplikasi "
-"tambahan untuk aplikasi atau peluncur, divais dan folder yang diminimalkan."
+msgid "Sets the background color or image with optional application menu or 
icons for minimized applications or launchers, devices and folders."
+msgstr "Atur warna atau gambar latar belakang dengan menu atau ikon aplikasi 
tambahan untuk aplikasi atau peluncur, divais dan folder yang diminimalkan."
 
 #: ../xfce4-about/main.c:84
 msgid "File Manager "
 msgstr "Manajer Berkas"
 
 #: ../xfce4-about/main.c:85
-msgid ""
-"A modern file manager for the Unix/Linux desktop, aiming to be easy-to-use "
-"and fast."
-msgstr ""
-"Manajer berkas modern untuk desktop Unix/Linux, bertujuan agar mudah "
-"digunakan dan cepat."
+msgid "A modern file manager for the Unix/Linux desktop, aiming to be 
easy-to-use and fast."
+msgstr "Manajer berkas modern untuk desktop Unix/Linux, bertujuan agar mudah 
digunakan dan cepat."
 
 #: ../xfce4-about/main.c:89
 msgid "Session Manager"
 msgstr "Manajer Sesi"
 
 #: ../xfce4-about/main.c:90
-msgid ""
-"Restores your session on startup and allows you to shutdown the computer "
-"from Xfce."
-msgstr ""
-"Kembalikan sesi anda saat hidupkan dan memungkinkan anda untuk mematikan "
-"komputer dari Xfce."
+msgid "Restores your session on startup and allows you to shutdown the 
computer from Xfce."
+msgstr "Kembalikan sesi anda saat hidupkan dan memungkinkan anda untuk 
mematikan komputer dari Xfce."
 
 #: ../xfce4-about/main.c:94
 msgid "Setting System"
 msgstr "Pengaturan Sistem"
 
 #: ../xfce4-about/main.c:95
-msgid ""
-"Configuration system to control various aspects of the desktop like "
-"appearance, display, keyboard and mouse settings."
-msgstr ""
-"Konfigurasi sistem untuk mengontrol beragam aspek dari desktop seperti "
-"pengaturan penampilan, tampilan, papan ketik dan tetikus."
+msgid "Configuration system to control various aspects of the desktop like 
appearance, display, keyboard and mouse settings."
+msgstr "Konfigurasi sistem untuk mengontrol beragam aspek dari desktop seperti 
pengaturan penampilan, tampilan, papan ketik dan tetikus."
 
 #: ../xfce4-about/main.c:99
 msgid "Application Finder"
 msgstr "Pencari Aplikasi"
 
 #: ../xfce4-about/main.c:100
-msgid ""
-"Shows the applications installed on your system in categories, so you can "
-"quickly find and launch them."
-msgstr ""
-"Menampilkan aplikasi yang terinstal di sistem anda dalam kategori, sehingga "
-"anda dapat mencarinya secara cepat kemudian menjalankannya."
+msgid "Shows the applications installed on your system in categories, so you 
can quickly find and launch them."
+msgstr "Menampilkan aplikasi yang terinstal di sistem anda dalam kategori, 
sehingga anda dapat mencarinya secara cepat kemudian menjalankannya."
 
 #: ../xfce4-about/main.c:104
 msgid "Utilities and Scripts"

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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to f93eae1abf331ba2d5433fa7222e915352c9b878 (commit)
   from b3b2ec791674195bc4407f6d1e4e2cb57b8e55f8 (commit)

commit f93eae1abf331ba2d5433fa7222e915352c9b878
Author: Andhika Padmawan 
Date:   Sun Dec 19 12:29:22 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  479 --
 1 files changed, 122 insertions(+), 357 deletions(-)

diff --git a/po/id.po b/po/id.po
index 6ca8e12..5a8b862 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,20 +2,20 @@
 # Copyright (C) 2004-2007 Benedikt Meurer.
 # This file is distributed under the same license as the thunar package.
 # Andhika Padmawan , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 16:18+0100\n"
-"PO-Revision-Date: 2010-06-26 08:51-0400\n"
+"POT-Creation-Date: 2010-12-19 11:12+\n"
+"PO-Revision-Date: 2010-12-19 18:35+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
-"Language: id\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../thunar/main.c:62
 msgid "Open the bulk rename dialog"
@@ -218,15 +218,11 @@ msgid_plural ""
 "delete the %u selected files?"
 msgstr[0] ""
 "Anda yakin ingin menghapus secara permanen\n"
-"berkas terpilih?"
-msgstr[1] ""
-"Anda yakin ingin menghapus secara permanen\n"
 "%u berkas terpilih?"
 
 #: ../thunar/thunar-application.c:1702
 msgid "If you delete a file, it is permanently lost."
-msgstr ""
-"Jika anda menghapus berkas, maka berkas tersebut akan hilang secara permanen."
+msgstr "Jika anda menghapus berkas, maka berkas tersebut akan hilang secara 
permanen."
 
 #: ../thunar/thunar-application.c:1712
 msgid "Deleting files..."
@@ -257,13 +253,8 @@ msgid "_Empty Trash"
 msgstr "_Kosongkan Kotak Sampah"
 
 #: ../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 ""
-"Jika anda memilih untuk mengosongkan Kotak Sampah, semua item di dalamnya "
-"akan hilang secara permanen. Tolong diingat bahwa anda dapat juga menghapus "
-"item tersebut secara terpisah."
+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 "Jika anda memilih untuk mengosongkan Kotak Sampah, semua item di 
dalamnya akan hilang secara permanen. Tolong diingat bahwa anda dapat juga 
menghapus item tersebut secara terpisah."
 
 #: ../thunar/thunar-application.c:1891
 msgid "Emptying the Trash..."
@@ -291,20 +282,16 @@ msgstr "Gagal untuk mengatur aplikasi standar untuk 
\"%s\""
 
 #: ../thunar/thunar-chooser-button.c:439
 #, c-format
-msgid ""
-"The selected application is used to open this and other files of type \"%s\"."
-msgstr ""
-"Aplikasi terpilih yang digunakan untuk membuka berkas ini dan berkas lain "
-"dari tipe \"%s\"."
+msgid "The selected application is used to open this and other files of type 
\"%s\"."
+msgstr "Aplikasi terpilih yang digunakan untuk membuka berkas ini dan berkas 
lain dari tipe \"%s\"."
 
 #: ../thunar/thunar-chooser-button.c:489
 msgid "No application selected"
 msgstr "Tak ada aplikasi terpilih"
 
 #: ../thunar/thunar-chooser-button.c:502
-#, fuzzy
 msgid "Other Application..."
-msgstr "_Aplikasi Lain..."
+msgstr "Aplikasi Lain..."
 
 #: ../thunar/thunar-chooser-dialog.c:185 ../thunar/thunar-launcher.c:171
 msgid "Open With"
@@ -316,12 +303,8 @@ msgid "Use a _custom command:"
 msgstr "Gunakan perintah _suai:"
 
 #: ../thunar/thunar-chooser-dialog.c:258
-msgid ""
-"Use a custom command for an application that is not available from the above "
-"application list."
-msgstr ""
-"Gunakan perintah suai untuk aplikasi yang tidak tersedia dari senarai "
-"aplikasi diatas."
+msgid "Use a custom command for an application that is not available from the 
above application list."
+msgstr "Gunakan perintah suai untuk aplikasi yang tidak tersedia dari senarai 
aplikasi diatas."
 
 #. create the "Custom command" button
 #: ../thunar/thunar-chooser-dialog.c:277
@@ -357,19 +340,13 @@ msgstr "Buka %s dan tipe berkas lain \"%s\" 
dengan:"
 
 #: ../thunar/thunar-chooser-dialog.c:657
 #, c-format
-msgid ""
-"Browse the file system to select an application to open files of type \"%s\"."
-msgstr ""
-"Ramban sistem berkas untuk memilih aplikasi untuk membuka berkas dari tipe "
-"\"%s\"."
+msgid "Browse the file system to select an application to open files of type 
\"%s\"."
+msgstr "Ramban sistem berkas untuk memilih aplikasi untuk membuka berkas dari 
tipe \"%s\"."
 
 #: ../thunar/thunar

[Xfce4-commits] Check for glibtoolize.

2010-12-19 Thread Benedikt Meurer
Updating branch refs/heads/master
 to e9f246a0486cc03168f7a8b47fadb64a9843da30 (commit)
   from d1702a893ff5f2c0fdf3cb0779360d155004efb1 (commit)

commit e9f246a0486cc03168f7a8b47fadb64a9843da30
Author: Benedikt Meurer 
Date:   Sun Dec 19 12:13:19 2010 +0100

Check for glibtoolize.

 scripts/xdt-autogen.in.in |8 +++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/scripts/xdt-autogen.in.in b/scripts/xdt-autogen.in.in
index 3a128e4..b5a075c 100644
--- a/scripts/xdt-autogen.in.in
+++ b/scripts/xdt-autogen.in.in
@@ -409,7 +409,13 @@ done
 ##
 ## Check for libtoolize
 ##
-test -z "${XDT_PROG_LIBTOOLIZE}" && XDT_PROG_LIBTOOLIZE="libtoolize"
+if test -z "${XDT_PROG_LIBTOOLIZE}"; then
+  if type glibtoolize >/dev/null 2>&1; then
+XDT_PROG_LIBTOOLIZE="glibtoolize"
+  elif type libtoolize >/dev/null 2>&1; then
+XDT_PROG_LIBTOOLIZE="libtoolize"
+  fi
+fi
 for configure_ac_file in $CONFIGURE_AC_FILES; do
   if grep -q "^AC_PROG_LIBTOOL" "${configure_ac_file}"; then
 (${XDT_PROG_LIBTOOLIZE} --version) /dev/null 2>&0 || {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Merge remote branch 'origin'

2010-12-19 Thread Benedikt Meurer
Updating branch refs/heads/master
 to d1702a893ff5f2c0fdf3cb0779360d155004efb1 (commit)
   from 4dc82ec2af7cab940cd700be6cb041468dc86338 (commit)

commit d1702a893ff5f2c0fdf3cb0779360d155004efb1
Merge: 4dc82ec 56cc7a6
Author: Benedikt Meurer 
Date:   Sun Dec 19 12:01:53 2010 +0100

Merge remote branch 'origin'

commit 56cc7a69d75dd7d59d0170af16b5030189ccb1a0
Author: Enrico Tröger 
Date:   Sun Nov 21 13:03:00 2010 +0100

Fix typo.

commit e0952f10499edcf6822b54811cb515b560612969
Author: Nick Schermer 
Date:   Sun Oct 31 15:08:40 2010 +0100

Updates for release.

commit 6bdbfdf491d3aa61806edc24b6a4cf984083c7ec
Author: Nick Schermer 
Date:   Sun Oct 31 12:45:04 2010 +0100

Check if $1 is a file before calling cat (bug #6101).

commit 0a39faed46ec1a72540649c69efd198a118851e8
Author: Yves-Alexis Perez 
Date:   Sun Oct 31 12:40:17 2010 +0100

Check for automake 1.11.

commit 7d85dae9cbd88e40fe987dc97e9453932e09b2ca
Author: Nick Schermer 
Date:   Sun Oct 31 12:09:20 2010 +0100

Add check stage for documentation submodules.

This adds an extra check when XDT_AUTOGEN_CHECK_DOCS
is defined. This variable points to the directory that
should contain the xfce4-docs submodule.

If no submodule clone if found and autogen.sh is running
from within a git clone, it will automatically initialize
the submodule for the user, if not it will show an error
and abort xdt-autogen, since configure will abort too if
we continue because of missing makefile.am files.

commit ddc1f35ba246fea94eea293a8f530de95aa0253e
Author: Nick Schermer 
Date:   Tue Jun 1 17:40:04 2010 +0200

Build ChangeLog from GIT.

 ChangeLog |  478 -
 ChangeLog.pre-git |  342 
 Makefile.am   |9 +
 NEWS  |7 +
 configure.in.in   |2 +-
 scripts/xdt-autogen.in.in |   48 -
 6 files changed, 60 insertions(+), 826 deletions(-)

diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 6f3c727..000
--- a/ChangeLog
+++ /dev/null
@@ -1,478 +0,0 @@
-2009-09-19  Brian J. Tarricone 
-
-  * ChangeLog, configure.in.in: == 4.7.2 released! ==
-
-  * NEWS, configure.in.in, m4macros/xdt-features.m4: fix typo that breaks
-  XDT_FEATURE_LINKER_OPTS
-
-  * ChangeLog, configure.in.in: == 4.7.1 released! ==
-
-  * m4macros/xdt-features.m4: put --disable-debug back and fix defaults for
-  visibility and linker opts  also make the non-defaults explicit and therefore
-  less confusing (it worked before due to default autoconf shell-ification of
-  the first arg, but that's not immediately clear)
-
-2009-09-19  Jannis Pohlmann 
-
-  * m4macros/xdt-features.m4: Fix XDT_FEATURE_LINKER_OPTS and
-  XDT_FEATURE_VISIBILITY.  AC_ARG_ENABLE executes the code its last parameter
-  if the --enable flag is not provided, not if the --disable flag is not
-  provided. That's why we need to set the value to "no", not to "yes".  Also
-  don't show the --disable-debug option (with weird indentation) because the
-  help message already explains that there are --disable variants for all
-  --enable options.
-
-  * m4macros/xdt-features.m4: Fix default detection and $enable_debug value in
-  XDT_FEATURE_DEBUG().  This uses the m4_default() macro instead of the custom
-  code to check which debug level should be used as the default. $default_level
-  was not set when running configure with --help before.  It seems we also need
-  to use [enable_debug=$enableval] in AC_ARG_ENABLE() for enable_debug to be
-  set. Tested it and it works fine.
-
-2009-09-18  Brian J. Tarricone 
-
-  * NEWS, m4macros/xdt-features.m4: beef up the XDT_FEATURE_DEBUG macro a bit
-
-  * README: s/SVN/Git/
-
-  * NEWS, m4macros/xdt-features.m4: add XDT_FEATURE_LINKER_OPTS
-
-  * NEWS, m4macros/xdt-features.m4: add XDT_FEATURE_VISIBILITY
-
-2009-08-26  Brian J. Tarricone 
-
-  * scripts/xdt-autogen.in.in: add do-not-edit warning to top of autogenerated
-  configure.{ac,in}
-
-  * scripts/xdt-autogen.in.in: remove configure.{ac,in} on 'clean' if
-  configure.{ac,in}.in exists
-
-  * scripts/xdt-autogen.in.in: print warning if attempting to compare git
-  revision versions  we can't tell version ordering, but it's possible it's
-  fine, so just print a warning and proceed.  autogen.sh writers shouldn't
-  depend on particular git revisions, only on release versions, but let's
-  soft-allow it.
-
-  * scripts/xdt-autogen.in.in: make lookup_configure_ac_files act like
-  lookup_configure_ac_in_files
-
-  * .gitignore: add gitignore
-
-  * scripts/xdt-autogen.in.in: rename CONFIGURE_FILES to CONFIGURE_AC_FILES for
-  clarity  also rename some similar vars/functions for the same reason
-
-  * scripts/xdt-autogen.in.in: be a little more portable, and select the best
-  awk implementation
-
-  * NEWS, scripts/xdt-autogen.in.in: also recognize new-school
-  AC_CONFIG_HEADERS() as requiring autoheader
-
-  

[Xfce4-commits] Use printf instead of echo -n.

2010-12-19 Thread Benedikt Meurer
Updating branch refs/heads/master
 to 4dc82ec2af7cab940cd700be6cb041468dc86338 (commit)
   from 20e7901a9fef7ea229fa3c55f8875509c795c391 (commit)

commit 4dc82ec2af7cab940cd700be6cb041468dc86338
Author: Benedikt Meurer 
Date:   Sun Dec 19 11:49:21 2010 +0100

Use printf instead of echo -n.

/bin/sh does not support the -n option for echo. Use printf instead,
which is independent of the shell.

 scripts/xdt-autogen.in.in |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/xdt-autogen.in.in b/scripts/xdt-autogen.in.in
index 2d14ef8..a2ef933 100644
--- a/scripts/xdt-autogen.in.in
+++ b/scripts/xdt-autogen.in.in
@@ -2,7 +2,7 @@
 #
 # $Id$
 #
-# Copyright (c) 2002-2006
+# Copyright (c) 2002-2010
 # The Xfce development team. All rights reserved.
 #
 # Written for Xfce by Benedikt Meurer .
@@ -93,7 +93,7 @@ EOF
 exit 1
   fi
 
-  test "x$configure_ac_file" != "x" && echo -n "$configure_ac_file "
+  test "x$configure_ac_file" != "x" && printf "%s" "$configure_ac_file "
 
   subdirs=`parse_configure_subdirs ${configure_ac_file}`
   for subdir in $subdirs; do
@@ -114,7 +114,7 @@ lookup_configure_ac_in_files()
 configure_ac_in_file="$1/configure.in.in";
   fi
 
-  test "x$configure_ac_in_file" != "x" && echo -n "$configure_ac_in_file "
+  test "x$configure_ac_in_file" != "x" && printf "%s" "$configure_ac_in_file "
 
   subdirs=`parse_configure_subdirs ${configure_ac_in_file}`
   for subdir in $subdirs; do
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: en_GB translation.

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to def239f143f5f6aaf717f7edecb7cd596444e426 (commit)
   from aac0a7b316d57a7d033f50ebfb5fc3560fed1656 (commit)

commit def239f143f5f6aaf717f7edecb7cd596444e426
Author: Jeff Bailes 
Date:   Sun Dec 19 10:32:58 2010 +0100

l10n: en_GB translation.

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

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

 po/{fi.po => en_GB.po} |   87 +++
 1 files changed, 43 insertions(+), 44 deletions(-)

diff --git a/po/fi.po b/po/en_GB.po
similarity index 61%
copy from po/fi.po
copy to po/en_GB.po
index 1e32d09..bf878fc 100644
--- a/po/fi.po
+++ b/po/en_GB.po
@@ -1,146 +1,145 @@
-# Finnish translations for xfce4-notifyd package.
-# Copyright (C) 2008 Brian J. Tarricone
-# This file is distributed under the same license as the xfce-notifyd package.
-# Jari Rahkonen , 2008, 2010.
+# xfce4-notifyd en_GB translation.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Jeff Bailes , 2010.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-notifyd\n"
+"Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-22 23:03+\n"
-"PO-Revision-Date: 2010-11-23 11:36+0200\n"
-"Last-Translator: Jari Rahkonen \n"
-"Language-Team: Finnish \n"
+"Language-Team: en_GB\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"
 
 #: ../xfce4-notifyd/main.c:50 ../xfce4-notifyd/main.c:60
 #: ../xfce4-notifyd-config/main.c:257
 msgid "Xfce Notify Daemon"
-msgstr "Xfce:n huomautuspalvelu"
+msgstr "Xfce Notify Daemon"
 
 #: ../xfce4-notifyd/main.c:53
 #, c-format
 msgid "Unknown option \"%s\"\n"
-msgstr "Tuntematon valitsin \"%s\"\n"
+msgstr "Unknown option \"%s\"\n"
 
 #: ../xfce4-notifyd/main.c:62
 msgid "Unable to start notification daemon"
-msgstr "Huomautuspalvelua ei voi käynnistää"
+msgstr "Unable to start notification daemon"
 
-#: ../xfce4-notifyd/xfce-notify-daemon.c:1118
+#: ../xfce4-notifyd/xfce-notify-daemon.c:1134
 #, c-format
 msgid "Unable to connect to D-Bus session bus"
-msgstr "D-Bus -istuntoväylään ei saa yhteyttä"
+msgstr "Unable to connect to D-Bus session bus"
 
-#: ../xfce4-notifyd/xfce-notify-daemon.c:1135
+#: ../xfce4-notifyd/xfce-notify-daemon.c:1151
 #, c-format
 msgid "Another notification xndaemon is already running"
-msgstr "Toinen huomautuspalvelu on jo käynnissä"
+msgstr "Another notification xndaemon is already running"
 
 #: ../xfce4-notifyd/xfce-notify-window.c:809
 msgid "image: "
-msgstr "kuva: "
+msgstr "image: "
 
 #: ../xfce4-notifyd-config/main.c:196
 msgid "Theme"
-msgstr "Teema"
+msgstr "Theme"
 
 #: ../xfce4-notifyd-config/main.c:223
 msgid ""
 "notify-send \"Notification Preview\" \"This is how notifications will look "
 "like\""
 msgstr ""
-"notify-send \"Mallihuomautus\" \"Huomautukset näyttävät tältä.\""
+"notify-send \"Notification Preview\" \"This is how notifications will look "
+"like\""
 
 #: ../xfce4-notifyd-config/main.c:227
 msgid "Notification preview failed"
-msgstr "Mallihuomautusta ei voi näyttää"
+msgstr "Notification preview failed"
 
 #: ../xfce4-notifyd-config/main.c:259
 msgid "Settings daemon is unavailable"
-msgstr "Asetuspalveluun ei saa yhteyttä"
+msgstr "Settings daemon is unavailable"
 
 #: ../xfce4-notifyd-config/main.c:314
 msgid "Display version information"
-msgstr "Näytä versiotiedot"
+msgstr "Display version information"
 
 #: ../xfce4-notifyd-config/main.c:315
 msgid "Settings manager socket"
-msgstr "Asetustenhallinnan pistoke"
+msgstr "Settings manager socket"
 
 #: ../xfce4-notifyd-config/main.c:315
 msgid "SOCKET_ID"
-msgstr "PISTOKE"
+msgstr "SOCKET_ID"
 
 #: ../xfce4-notifyd-config/main.c:325
 #, c-format
 msgid "Type '%s --help' for usage."
-msgstr "Saat käyttöohjeita komennolla \"%s --help\"."
+msgstr "Type '%s --help' for usage."
 
-#: ../xfce4-notifyd-config/main.c:337
+#: ../xfce4-notifyd-config/main.c:338
 #, c-format
 msgid "Released under the terms of the GNU General Public License, version 2\n"
-msgstr "Julkaistu GNU GPL -lisenssin version 2 ehdoilla\n"
+msgstr "Released under the terms of the GNU General Public License, version 
2\n"
 
-#: ../xfce4-notifyd-config/main.c:338
+#: ../xfce4-notifyd-config/main.c:339
 #, c-format
 msgid "Please report bugs to %s.\n"
-msgstr "Ilmoita ohjelmavirheistä osoitteeseen %s.\n"
+msgstr "Please report bugs to %s.\n"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:1
 msgid "Bottom left"
-msgstr "Vasen alakulma"
+msgstr "Bottom left"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:2
 msgid "Bottom right"
-msgstr "Oikea alakulma"
+msgstr "Bottom right"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:3
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
 msgid "Customize how notifications a

[Xfce4-commits] l10n: en-GB translation.

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to f615e4743b96832fbdf0dfd116463fbce7e848fa (commit)
   from 0e953fc46110ad616a794be65417f495cc036015 (commit)

commit f615e4743b96832fbdf0dfd116463fbce7e848fa
Author: Jeff Bailes 
Date:   Sun Dec 19 10:29:11 2010 +0100

l10n: en-GB translation.

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

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

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

diff --git a/po/en_GB.po b/po/en_GB.po
new file mode 100644
index 000..bd39c6f
--- /dev/null
+++ b/po/en_GB.po
@@ -0,0 +1,36 @@
+# en_GB translation of transd.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Jeff Bailes , 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-12-19 05:01+\n"
+"PO-Revision-Date: 2010-12-19 20:28+1100\n"
+"Last-Translator: Jeff Bailes \n"
+"Language-Team: en_GB\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../src/transd.c:116
+msgid "Configuration format changed."
+msgstr "Configuration format changed."
+
+#: ../src/transd.c:117
+msgid ""
+"Transd now uses a new configuration file format.  Please see the README for "
+"details.  Transd will now exit."
+msgstr ""
+"Transd now uses a new configuration file format.  Please see the README for "
+"details.  Transd will now exit."
+
+#: ../transd.desktop.in.h:1
+msgid "Daemon which monitors windows and sets transparency based on rulesets"
+msgstr "Daemon which monitors windows and sets transparency based on rulesets"
+
+#: ../transd.desktop.in.h:2
+msgid "Transparency Daemon"
+msgstr "Transparency Daemon"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


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

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 63141a544025c3befcee4d36604e56ab83b9362e (commit)
   from bb047e92cbbf5da5d20ce3e195bc2cc65c4a5600 (commit)

commit 63141a544025c3befcee4d36604e56ab83b9362e
Author: Ardjuna 
Date:   Sun Dec 19 09:54:29 2010 +0100

l10n: Updated Indonesian (id) translation to 100%

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

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

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

diff --git a/po/id.po b/po/id.po
index 27f6769..585c462 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,19 +2,19 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Tumbler (Xfce)\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 16:31+0100\n"
+"POT-Creation-Date: 2010-12-19 05:01+\n"
 "PO-Revision-Date: 2010-06-01 14:35+0700\n"
 "Last-Translator: Δrdjuna \n"
 "Language-Team: Bahasa Indonesia\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: Indonesian\n"
 "X-Poedit-Country: INDONESIA\n"
 
@@ -60,12 +60,8 @@ msgstr "Terdapat bagian cacat \"%s\" pada berkas \"%s\": %s"
 
 #: ../tumblerd/tumbler-manager.c:526
 #, c-format
-msgid ""
-"Malformed section \"%s\" in file \"%s\": Mismatch between section name and "
-"UriScheme/MimeType"
-msgstr ""
-"Terdapat bagian cacat \"%s\" pada berkas \"%s\": Ketidakcocokan antara nama "
-"bagian dengan UriScheme/MimeType"
+msgid "Malformed section \"%s\" in file \"%s\": Mismatch between section name 
and UriScheme/MimeType"
+msgstr "Terdapat bagian cacat \"%s\" pada berkas \"%s\": Ketidakcocokan antara 
nama bagian dengan UriScheme/MimeType"
 
 #: ../tumblerd/tumbler-manager.c:886 ../tumblerd/tumbler-manager.c:900
 #: ../tumblerd/tumbler-manager.c:914
@@ -216,12 +212,10 @@ msgid "Thumbnail could not be inferred from file contents"
 msgstr "Tidak dapat membentuk thumbnail dari isi berkas"
 
 #: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer-plugin.c:62
-#, fuzzy
 msgid "Initializing the Tumbler JPEG Thumbnailer plugin"
 msgstr "Menginisialisasi plugin \"Tumbler Pixbuf Thumbnailer\""
 
 #: ../plugins/jpeg-thumbnailer/jpeg-thumbnailer-plugin.c:79
-#, fuzzy
 msgid "Shutting down the Tumbler JPEG Thumbnailer plugin"
 msgstr "Mematikan plugin \"Tumbler Pixbuf Thumbnailer\""
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Add en-GB translation.

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 5a64c4e974810411a5e36fa873b7806cd0252653 (commit)
   from fa819b3ef0817f6386de71f8da2e16f875746bf9 (commit)

commit 5a64c4e974810411a5e36fa873b7806cd0252653
Author: Jeff Bailes 
Date:   Sun Dec 19 09:33:36 2010 +0100

l10n: Add en-GB translation.

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

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

 po/{sv.po => en_GB.po} |  375 +++-
 1 files changed, 182 insertions(+), 193 deletions(-)

diff --git a/po/sv.po b/po/en_GB.po
similarity index 73%
copy from po/sv.po
copy to po/en_GB.po
index 104ca39..17e2bf8 100644
--- a/po/sv.po
+++ b/po/en_GB.po
@@ -1,24 +1,23 @@
-# Swedish translation for parole.
-# Copyright (C) 2009 Free Software Foundation, Inc.
-# This file is distributed under the same license as the parole package.
-# Daniel Nylander , 2009.
-# 
+# en_GB translation for parole.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Jeff Bailes , 2010.
+#
 msgid ""
 msgstr ""
-"Project-Id-Version: parole\n"
+"Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-18 17:04+\n"
-"PO-Revision-Date: 2009-12-16 14:03+0100\n"
-"Last-Translator: Daniel Nylander \n"
-"Language-Team: Swedish \n"
+"POT-Creation-Date: 2010-12-19 05:04+\n"
+"PO-Revision-Date: 2010-12-19 19:32+1100\n"
+"Last-Translator: Jeff Bailes \n"
+"Language-Team: en_GB\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
+"Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../data/interfaces/parole.ui.h:1
 msgid "16:9 (Widescreen)"
-msgstr "16:9 (Bredbild)"
+msgstr "16:9 (Widescreen)"
 
 #: ../data/interfaces/parole.ui.h:2
 msgid "20:9 (DVB)"
@@ -30,7 +29,7 @@ msgstr "4:3 (TV)"
 
 #: ../data/interfaces/parole.ui.h:4
 msgid "Aspect Ratio"
-msgstr "Bildförhållande"
+msgstr "Aspect Ratio"
 
 #: ../data/interfaces/parole.ui.h:5
 msgid "Auto"
@@ -38,87 +37,86 @@ msgstr "Auto"
 
 #: ../data/interfaces/parole.ui.h:6
 msgid "Chapter Menu"
-msgstr "Kapitelmeny"
+msgstr "Chapter Menu"
 
 #: ../data/interfaces/parole.ui.h:7
-#, fuzzy
 msgid "DVD"
 msgstr "DVD"
 
 #: ../data/interfaces/parole.ui.h:8
 msgid "DVD Menu"
-msgstr "DVD-meny"
+msgstr "DVD Menu"
 
 #: ../data/interfaces/parole.ui.h:9
 msgid "From ISO image"
-msgstr "Från ISO-avbildning"
+msgstr "From ISO image"
 
 #: ../data/interfaces/parole.ui.h:10
 msgid "Media player"
-msgstr "Mediaspelare"
+msgstr "Media player"
 
 #: ../data/interfaces/parole.ui.h:11
 msgid "Mute"
-msgstr "Tyst"
+msgstr "Mute"
 
 #: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:1197
 #: ../src/parole-disc-menu.c:113
 msgid "Next Chapter"
-msgstr "Nästa kapitel"
+msgstr "Next Chapter"
 
 #: ../data/interfaces/parole.ui.h:13
 msgid "None"
-msgstr "Inget"
+msgstr "None"
 
 #: ../data/interfaces/parole.ui.h:14 ../data/desktop/parole.desktop.in.in.h:1
 #: ../src/parole-about.c:70 ../plugins/window-title/window-title-provider.c:58
 msgid "Parole Media Player"
-msgstr "Mediaspelaren Parole"
+msgstr "Parole Media Player"
 
 #: ../data/interfaces/parole.ui.h:15
 msgid "Plugins"
-msgstr "Insticksmoduler"
+msgstr "Plugins"
 
 #: ../data/interfaces/parole.ui.h:16 ../src/parole-player.c:1209
 #: ../src/parole-disc-menu.c:114
 msgid "Previous Chapter"
-msgstr "Föregående kapitel"
+msgstr "Previous Chapter"
 
 #: ../data/interfaces/parole.ui.h:17
 msgid "Repeat"
-msgstr "Upprepa"
+msgstr "Repeat"
 
 #: ../data/interfaces/parole.ui.h:18
 msgid "Select Track"
-msgstr "Välj spår"
+msgstr "Select Track"
 
 #: ../data/interfaces/parole.ui.h:19
 msgid "Shuffle"
-msgstr "Blanda"
+msgstr "Shuffle"
 
 #: ../data/interfaces/parole.ui.h:20
 msgid "Sound"
-msgstr "Ljud"
+msgstr "Sound"
 
 #: ../data/interfaces/parole.ui.h:21
 msgid "Square"
-msgstr ""
+msgstr "Square"
 
 #: ../data/interfaces/parole.ui.h:22
 msgid "Volume Down"
-msgstr "Sänk volymen"
+msgstr "Volume Down"
 
 #: ../data/interfaces/parole.ui.h:23
 msgid "Volume Up"
-msgstr "Höj volymen"
+msgstr "Volume Up"
 
 #: ../data/interfaces/parole.ui.h:24
 msgid "_Edit"
-msgstr "R_edigera"
+msgstr "_Edit"
 
 #: ../data/interfaces/parole.ui.h:25
 msgid "_Help"
-msgstr "_Hjälp"
+msgstr "_Help"
 
 #: ../data/interfaces/parole.ui.h:26
 msgid "_Media"
@@ -126,55 +124,55 @@ msgstr "_Media"
 
 #: ../data/interfaces/parole.ui.h:27
 msgid "_Open location"
-msgstr "_Öppna plats"
+msgstr "_Open location"
 
 #: ../data/interfaces/parole.ui.h:28
 msgid "_View"
-msgstr "_Visa"
+msgstr "_View"
 
 #: ../data/interfaces/mediachooser.ui.h:1
 msgid "Replace playlist with opened files"
-msgstr "Ersätt spellista med öppnade filer"
+msgstr "Replace playlist with opened files"
 
 #: ../data/interfaces/mediachooser.ui.h:2
 msgid "Scan folders recursively"
-msgstr "Sök igenom mappar rekursivt"
+msgstr "Scan folders recu

[Xfce4-commits] l10n: Add en-GB translation.

2010-12-19 Thread Transifex
Updating branch refs/heads/master
 to 8b94560dc563c913cf67a798ebb1f93a5f5f2274 (commit)
   from 0c1078c52d7cb18933eb695074bcc28da5620417 (commit)

commit 8b94560dc563c913cf67a798ebb1f93a5f5f2274
Author: Jeff Bailes 
Date:   Sun Dec 19 09:24:46 2010 +0100

l10n: Add en-GB translation.

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

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

 po/{sk.po => en_GB.po} |  284 +---
 1 files changed, 148 insertions(+), 136 deletions(-)

diff --git a/po/sk.po b/po/en_GB.po
similarity index 62%
copy from po/sk.po
copy to po/en_GB.po
index 8c0e604..6d166e4 100644
--- a/po/sk.po
+++ b/po/en_GB.po
@@ -1,47 +1,47 @@
-# Slovak translation of Gigolo.
-# Copyright (C) 2008-2009 Enrico Tröger
-# This file is distributed under the same license as Gigolo.
-# Robert Hartl , 2009.
+# en_GB translation for gigolo.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Jeff Bailes , 2010.
+#
 msgid ""
 msgstr ""
-"Project-Id-Version: gigolo\n"
+"Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-30 05:04+\n"
-"PO-Revision-Date: 2009-08-31 19:15+0100\n"
-"Last-Translator: Robert Hartl \n"
-"Language-Team: slovak \n"
+"POT-Creation-Date: 2010-12-19 05:05+\n"
+"PO-Revision-Date: 2010-12-19 19:24+1100\n"
+"Last-Translator: Jeff Bailes \n"
+"Language-Team: en_GB\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
 
 #: ../src/main.c:46
 msgid "Ignore running instances, enforce opening a new instance"
-msgstr "Ignorovať spustené inštancie, vynútiť otvorenie novej inštancie"
+msgstr "Ignore running instances, enforce opening a new instance"
 
 #: ../src/main.c:47
 msgid "Print a list of supported URI schemes"
-msgstr "Vypísať zoznam podporovaných schém URI"
+msgstr "Print a list of supported URI schemes"
 
 #: ../src/main.c:48
 msgid "Be verbose"
-msgstr "Podrobné informácie"
+msgstr "Be verbose"
 
 #: ../src/main.c:49
 msgid "Show version information"
-msgstr "Zobraziť informácie o verzii"
+msgstr "Show version information"
 
 #: ../src/main.c:79
 msgid "- a simple frontend to easily connect to remote filesystems"
-msgstr "- jednoduché rozhranie pre jednoduché pripojenie k vzdialeným 
súborovým systémom."
+msgstr "- a simple frontend to easily connect to remote filesystems"
 
 #: ../src/common.c:77
 msgid "Unix Device"
-msgstr "Zariadenie Unixu"
+msgstr "Unix Device"
 
 #: ../src/common.c:79
 msgid "Windows Share"
-msgstr "Zdieľaný priečinok Windows"
+msgstr "Windows Share"
 
 #: ../src/common.c:81
 msgid "FTP"
@@ -65,33 +65,34 @@ msgstr "WebDAV"
 
 #: ../src/common.c:91
 msgid "WebDAV (secure)"
-msgstr "WebDAV (zabezbečený)"
+msgstr "WebDAV (secure)"
 
 #: ../src/common.c:93 ../src/window.c:1371
 msgid "Network"
-msgstr "Sieť"
+msgstr "Network"
 
 #: ../src/common.c:95
 msgid "Archive"
-msgstr "Archív"
+msgstr "Archive"
 
 #: ../src/common.c:97
 msgid "Photos"
-msgstr "Fotky"
+msgstr "Photos"
 
 #: ../src/common.c:99
 msgid "Custom Location"
-msgstr "Vlastné umiestnenie"
+msgstr "Custom Location"
 
 #: ../src/window.c:261
 #, c-format
 msgid "Connecting to \"%s\""
-msgstr "Pripojovanie k \"%s\""
+msgstr "Connecting to \"%s\""
 
 #: ../src/window.c:429
-#, fuzzy
-msgid "A simple frontend to easily connect/mount to local and remote 
filesystems"
-msgstr "Jednoduché rozhranie pre jednoduché pripojenie k vzdialeným súborovým 
systémom."
+msgid ""
+"A simple frontend to easily connect/mount to local and remote filesystems"
+msgstr ""
+"A simple frontend to easily connect/mount to local and remote filesystems"
 
 #: ../src/window.c:430
 msgid "Copyright 2008-2010 Enrico Tröger"
@@ -99,123 +100,123 @@ msgstr "Copyright 2008-2010 Enrico Tröger"
 
 #: ../src/window.c:433
 msgid "translator-credits"
-msgstr "Robert Hartl "
+msgstr "Jeff Bailes , 2010"
 
 #: ../src/window.c:465
 msgid "Gigolo can use the following protocols provided by GVfs:"
-msgstr "Aplikácia Gigolo môže používať nasledujúce protokoly poskytované 
systémom súborov GVfs:"
+msgstr "Gigolo can use the following protocols provided by GVfs:"
 
 #: ../src/window.c:562
 #, c-format
 msgid "The command '%s' failed"
-msgstr "Príkaz '%s' zlyhal"
+msgstr "The command '%s' failed"
 
 #: ../src/window.c:563 ../src/window.c:690 ../src/bookmarkeditdialog.c:214
 #: ../src/bookmarkeditdialog.c:233 ../src/bookmarkeditdialog.c:246
 #: ../src/bookmarkeditdialog.c:257 ../src/bookmarkeditdialog.c:268
 msgid "Error"
-msgstr "Chyba"
+msgstr "Error"
 
 #: ../src/window.c:1157
 msgid "_File"
-msgstr "_Súbor"
+msgstr "_File"
 
 #: ../src/window.c:1158
 msgid "_Edit"
-msgstr "_Upraviť"
+msgstr "_Edit"
 
 #: ../src/window.c:1159
 msgid "_Actions"
-msgstr "_Akcie"
+msgstr "_Actions"
 
 #: ../src/window.c:1160
 msgid "_View"
-msgstr "_Zobraziť"
+msgstr "_View"
 
 #: ../src/window.c:11