[Xfce4-commits] New extension to delay page loading until page displays

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to cef295aae9f1286c8a0e7a298ec2636d834b4e01 (commit)
   from 0ecfd696ba17bc28079543142171bf126667f6a9 (commit)

commit cef295aae9f1286c8a0e7a298ec2636d834b4e01
Author: André Stösel 
Date:   Fri Jun 8 01:03:57 2012 +0200

New extension to delay page loading until page displays

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

 extensions/delayed-load.vala |   97 ++
 midori/midori.vapi   |4 +-
 2 files changed, 100 insertions(+), 1 deletions(-)

diff --git a/extensions/delayed-load.vala b/extensions/delayed-load.vala
new file mode 100644
index 000..dd8bc26
--- /dev/null
+++ b/extensions/delayed-load.vala
@@ -0,0 +1,97 @@
+/*
+   Copyright (C) 2012 André Stösel 
+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   See the file COPYING for the full license text.
+*/
+
+using Katze;
+using Midori;
+
+namespace DelayedLoad {
+private class Manager : Midori.Extension {
+private void tab_changed (GLib.Object window, GLib.ParamSpec pspec) {
+Midori.Browser browser = window as Midori.Browser;
+Midori.View? view = browser.tab as Midori.View;
+
+Katze.Item item = view.get_proxy_item ();
+item.ref();
+
+int64 delay = item.get_meta_integer ("delay");
+if (delay == -2 && view.can_reload ()) {
+view.reload (true);
+}
+}
+
+private bool reload_first_tab () {
+Midori.App app = get_app ();
+Midori.Browser? browser = app.browser;
+Midori.View? view = browser.tab as Midori.View;
+
+Katze.Item item = view.get_proxy_item ();
+item.ref();
+
+int64 delay = item.get_meta_integer ("delay");
+if (delay != 1) {
+unowned WebKit.WebView web_view = view.get_web_view ();
+WebKit.LoadStatus load_status = web_view.load_status;
+if (load_status == WebKit.LoadStatus.FINISHED) {
+if (view.can_reload ())
+view.reload (false);
+return false;
+}
+}
+
+return true;
+}
+
+private void browser_added (Midori.Browser browser) {
+browser.notify["tab"].connect (this.tab_changed);
+}
+
+private void browser_removed (Midori.Browser browser) {
+browser.notify["tab"].disconnect (this.tab_changed);
+}
+
+public void activated (Midori.App app) {
+/* FIXME: override behavior without changing the preference */
+app.settings.load_on_startup = MidoriStartup.DELAYED_PAGES;
+
+Midori.Browser? focused_browser = app.browser;
+if (focused_browser == null)
+Timeout.add (50, this.reload_first_tab);
+
+foreach (Midori.Browser browser in app.get_browsers ()) {
+browser_added (browser);
+}
+app.add_browser.connect (browser_added);
+}
+
+public void deactivated () {
+Midori.App app = get_app ();
+foreach (Midori.Browser browser in app.get_browsers ()) {
+browser_removed (browser);
+}
+app.add_browser.disconnect (browser_added);
+}
+
+internal Manager () {
+GLib.Object (name: _("Delayed load"),
+ description: _("Delay page load until you actually 
use the tab."),
+ version: "0.1",
+ authors: "André Stösel ");
+
+activate.connect (this.activated);
+deactivate.connect (this.deactivated);
+}
+}
+}
+
+public Midori.Extension extension_init () {
+return new DelayedLoad.Manager ();
+}
+
diff --git a/midori/midori.vapi b/midori/midori.vapi
index d30cd77..265a7e9 100644
--- a/midori/midori.vapi
+++ b/midori/midori.vapi
@@ -14,7 +14,7 @@ namespace Midori {
 [NoAccessorMethod]
 public string name { get; set; }
 [NoAccessorMethod]
-public Midori.WebSettings settings { get; set; }
+public Midori.WebSettings settings { owned get; set; }
 [NoAccessorMethod]
 public GLib.Object bookmarks { get; set; }
 [NoAccessorMethod]
@@ -176,6 +176,8 @@ namespace Midori {
 
 public class WebSettings : WebKit.WebSettings {
 public WebSettings ();
+[NoAccessorMethod]
+public MidoriStartup load_on_startup { get; set; }
 }
 
 [CCode (cheader_filename = "midori/midori-websettings.h", cprefix = 
"MIDORI_STARTUP_")]
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https:/

[Xfce4-commits] Change "delay" to "-2" after delaying the page load.

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to 0ecfd696ba17bc28079543142171bf126667f6a9 (commit)
   from 8e3d770e09a1c6df0c08a3e450dda1299d02e5ac (commit)

commit 0ecfd696ba17bc28079543142171bf126667f6a9
Author: André Stösel 
Date:   Thu Jun 7 23:18:49 2012 +0200

Change "delay" to "-2" after delaying the page load.

This is needed in order to check the truth page status.

 midori/midori-view.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-view.c b/midori/midori-view.c
index 8914144..00bd6ff 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -4351,7 +4351,7 @@ midori_view_set_uri (MidoriView*  view,
 else if (katze_item_get_meta_boolean (view->item, "delay"))
 {
 katze_assign (view->uri, g_strdup (uri));
-katze_item_set_meta_integer (view->item, "delay", -1);
+katze_item_set_meta_integer (view->item, "delay", -2);
 midori_view_display_error (
 view, view->uri, view->title ? view->title : view->uri,
 _("Page loading delayed"),
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Add basic KatzeItem and meta data accessors to katze.vapi

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to 8e3d770e09a1c6df0c08a3e450dda1299d02e5ac (commit)
   from eafbc37f0ba5d4361821c3c4a41e7c637270ff9f (commit)

commit 8e3d770e09a1c6df0c08a3e450dda1299d02e5ac
Author: André Stösel 
Date:   Thu Jun 7 23:13:54 2012 +0200

Add basic KatzeItem and meta data accessors to katze.vapi

 katze/katze.vapi   |6 ++
 midori/midori.vapi |2 +-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/katze/katze.vapi b/katze/katze.vapi
index 6ba5cfa..a152a6c 100644
--- a/katze/katze.vapi
+++ b/katze/katze.vapi
@@ -7,5 +7,11 @@ namespace Katze {
 public Array (GLib.Type type);
 public void add_item (GLib.Object item);
 }
+
+public class Item : GLib.Object {
+public bool get_meta_boolean (string key);
+public int64 get_meta_integer (string key);
+public void set_meta_integer (string key, int64 value);
+}
 }
 
diff --git a/midori/midori.vapi b/midori/midori.vapi
index 310982d..d30cd77 100644
--- a/midori/midori.vapi
+++ b/midori/midori.vapi
@@ -142,7 +142,7 @@ namespace Midori {
 public Gtk.Menu get_tab_menu ();
 public Pango.EllipsizeMode get_label_ellipsize ();
 public Gtk.Label get_proxy_tab_label ();
-public GLib.Object get_proxy_item ();
+public Katze.Item get_proxy_item ();
 public bool can_view_source ();
 public bool can_find ();
 public void search_text (string text, bool case_sensitive, bool 
forward);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Add MidoriStartup, can_/reload to midori.vapi

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to eafbc37f0ba5d4361821c3c4a41e7c637270ff9f (commit)
   from bc3ce47d7d62d36813f330903ff2614c8bb2989b (commit)

commit eafbc37f0ba5d4361821c3c4a41e7c637270ff9f
Author: André Stösel 
Date:   Thu Jun 7 23:12:47 2012 +0200

Add MidoriStartup, can_/reload to midori.vapi

+ add missing enum MidoriStartup
+ add functions to check if the view is loadable and actually load the view

 midori/midori.vapi |   10 ++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/midori/midori.vapi b/midori/midori.vapi
index 61c5990..310982d 100644
--- a/midori/midori.vapi
+++ b/midori/midori.vapi
@@ -152,6 +152,8 @@ namespace Midori {
 public Gdk.Pixbuf get_snapshot (int width, int height);
 public unowned WebKit.WebView get_web_view ();
 public void populate_popup (Gtk.Menu menu, bool manual);
+public bool can_reload ();
+public void reload (bool from_cache);
 
 public string uri { get; }
 public string title { get; }
@@ -176,6 +178,14 @@ namespace Midori {
 public WebSettings ();
 }
 
+[CCode (cheader_filename = "midori/midori-websettings.h", cprefix = 
"MIDORI_STARTUP_")]
+public enum MidoriStartup {
+BLANK_PAGE,
+HOMEPAGE,
+LAST_OPEN_PAGES,
+DELAYED_PAGES
+}
+
 [CCode (cheader_filename = "midori/sokoke.h", lower_case_cprefix = 
"sokoke_")]
 namespace Sokoke {
 public static uint gtk_action_count_modifiers (Gtk.Action action);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: New Serbian translation, author salepetronije

2012-06-11 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 0635c6f4edc972d8192a64019b4d932ac7d00fa4 (commit)
   from f456ea9563a5cf9367bc4e348f63a8909e109879 (commit)

commit 0635c6f4edc972d8192a64019b4d932ac7d00fa4
Author: Мирослав Николић 
Date:   Mon Jun 11 23:56:49 2012 +0200

l10n: New Serbian translation, author salepetronije

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

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

 po/{lt.po => sr.po} |  244 +--
 1 files changed, 120 insertions(+), 124 deletions(-)

diff --git a/po/lt.po b/po/sr.po
similarity index 53%
copy from po/lt.po
copy to po/sr.po
index f2ae63e..9fd97aa 100644
--- a/po/lt.po
+++ b/po/sr.po
@@ -1,102 +1,98 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-# Algimantas Margevičius , 2012.
-#
+# salepetronije , 2012.
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-01-27 01:33+\n"
-"PO-Revision-Date: 2012-01-27 09:14+0200\n"
-"Last-Translator: Algimantas Margevičius \n"
-"Language-Team: Lietuvių <>\n"
-"Language: \n"
+"POT-Creation-Date: 2012-04-19 05:30+\n"
+"PO-Revision-Date: 2012-06-11 23:53+0200\n"
+"Last-Translator: salepetronije \n"
+"Language-Team: српски \n"
+"Language: hr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
-"%100<10 || n%100>=20) ? 1 : 2)\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: ../libxfce4ui/xfce-dialogs.c:80
 msgid "Failed to open web browser for online documentation"
-msgstr "Nepavyko atverti naršyklės tinklo dokumentacijai"
+msgstr "Не успевам да отворим у веб прегледнику документацију са мреже"
 
 #: ../libxfce4ui/xfce-dialogs.c:195
 #, c-format
 msgid "Do you want to read the %s manual online?"
-msgstr "Ar norite skaityti %s naudotojo vadovą internete?"
+msgstr "Да ли желите да читате %s документацију са мреже?"
 
 #: ../libxfce4ui/xfce-dialogs.c:197
 msgid "Do you want to read the manual online?"
-msgstr "Ar norite skaityti naudotojo vadovą internete?"
+msgstr "Да ли желите да читате документацију са мреже?"
 
 #: ../libxfce4ui/xfce-dialogs.c:200
 msgid "Online Documentation"
-msgstr "Dokumentacija tinkle"
+msgstr "Документација са мреже"
 
 #: ../libxfce4ui/xfce-dialogs.c:203
 msgid ""
 "You will be redirected to the documentation website where the help pages are "
 "maintained and translated."
-msgstr ""
-"Jūs būsite nukreipti į dokumentacijos svetainę kurioje yra verčiami ir "
-"prižiūrimi žinyno puslapiai."
+msgstr "Бићете преусмерени на веб страницу где се одржава и преводи помоћ."
 
 #: ../libxfce4ui/xfce-dialogs.c:207
 msgid "_Read Online"
-msgstr "_Skaityti internete"
+msgstr "_Читај са мреже"
 
 #: ../libxfce4ui/xfce-dialogs.c:219
 msgid "_Always go directly to the online documentation"
-msgstr "_Visada eiti tiesiai į dokumentaciją internete"
+msgstr "_Увек иди директно на документацију на мрежи"
 
 #: ../libxfce4ui/xfce-dialogs.c:263
 msgid "Information"
-msgstr "Informacija"
+msgstr "Информације"
 
 #: ../libxfce4ui/xfce-dialogs.c:296
 msgid "Warning"
-msgstr "Įspėjimas"
+msgstr "Упозорење"
 
 #: ../libxfce4ui/xfce-dialogs.c:330
 msgid "Error"
-msgstr "Klaida"
+msgstr "Грешка"
 
 #: ../libxfce4ui/xfce-dialogs.c:381
 msgid "Question"
-msgstr "Klausimas"
+msgstr "Питање"
 
 #: ../libxfce4ui/xfce-sm-client.c:1402
 msgid "Session management client ID"
-msgstr "Seanso tvarkyklės kliento ID"
+msgstr "ИБ клијента управљања сесије"
 
 #: ../libxfce4ui/xfce-sm-client.c:1402
 msgid "ID"
-msgstr "ID"
+msgstr "ИБ"
 
 #: ../libxfce4ui/xfce-sm-client.c:1403
 msgid "Disable session management"
-msgstr "Išjungti seanso tvarkymą"
+msgstr "Онемогући управљање сесијом"
 
 #: ../libxfce4ui/xfce-sm-client.c:1413
 msgid "Session management options"
-msgstr "Seanso tvarkymo parinktys"
+msgstr "Могућности управљања сесијом"
 
 #: ../libxfce4ui/xfce-sm-client.c:1414
 msgid "Show session management options"
-msgstr "Rodyti seanso tvarkymo parinktis"
+msgstr "Прикажи могућности управљања сесијом"
 
 #: ../libxfce4ui/xfce-sm-client.c:1590
 #, c-format
 msgid "Failed to connect to the session manager: %s"
-msgstr "Nepavyko prisijungti prie seanso tvarkyklės: %s"
+msgstr "Нисам успео да се повежем са управником сесије: %s"
 
 #: ../libxfce4ui/xfce-sm-client.c:1597
 #, c-format
 msgid "Session manager did not return a valid client id"
-msgstr "Seanso tvarkyklė negrąžino tinkamo kliento id"
+msgstr "Управник сесије није вратио исправни ИБ клијента"
 
 #. print warning for user
 #: ../libxfce4ui/xfce-spawn.c:406
@@ -105,15 +101,15 @@ msgid ""
 "Working directory \"%s\" does not exist. It won't be used when spawning \"%s

[Xfce4-commits] l10n: New Serbian translation, author salepetronije

2012-06-11 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to e90983ff12c1f92b3c5b66d55b62ec9f5a7d4e3a (commit)
   from 93352fa2e83d543785051b80db6aa0192431e646 (commit)

commit e90983ff12c1f92b3c5b66d55b62ec9f5a7d4e3a
Author: Мирослав Николић 
Date:   Mon Jun 11 23:33:22 2012 +0200

l10n: New Serbian translation, author salepetronije

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

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

 po/{pl.po => sr.po} |  102 ---
 1 files changed, 40 insertions(+), 62 deletions(-)

diff --git a/po/pl.po b/po/sr.po
similarity index 57%
copy from po/pl.po
copy to po/sr.po
index 6534b0b..92adc9f 100644
--- a/po/pl.po
+++ b/po/sr.po
@@ -1,168 +1,146 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Piotr Sokół , 2010.
+# Мирослав Николић , 2012.
+# salepetronije , 2012.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: garcon\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-14 13:51+\n"
-"PO-Revision-Date: 2010-06-04 14:32+0200\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish <>\n"
+"POT-Creation-Date: 2012-04-15 15:09+\n"
+"PO-Revision-Date: 2012-06-11 18:40+0200\n"
+"Last-Translator: salepetronije \n"
+"Language-Team: српски \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
 #: ../data/xfce/xfce-accessories.directory.in.h:1
 msgid "Accessories"
-msgstr "Akcesoria"
+msgstr "Алати"
 
 #: ../data/xfce/xfce-accessories.directory.in.h:2
 msgid "Common desktop tools and applications"
-msgstr "Obejmuje narzędzia i programy użytkowe"
+msgstr "Општи алати радне површи и програми"
 
 #: ../data/xfce/xfce-development.directory.in.h:1
 msgid "Development"
-msgstr "Programowanie"
+msgstr "Развој"
 
 #: ../data/xfce/xfce-development.directory.in.h:2
 msgid "Software development tools"
-msgstr "Zawiera narzędzia programistyczne"
+msgstr "Алати за развој софтвера"
 
 #: ../data/xfce/xfce-education.directory.in.h:1
 msgid "Education"
-msgstr "Edukacja"
+msgstr "Образовање"
 
 #: ../data/xfce/xfce-education.directory.in.h:2
 msgid "Educational software"
-msgstr "Przechowuje oprogramowanie edukacyjne"
+msgstr "Образовни програми"
 
 #: ../data/xfce/xfce-games.directory.in.h:1
 msgid "Games"
-msgstr "Gry"
+msgstr "Игре"
 
 #: ../data/xfce/xfce-games.directory.in.h:2
 msgid "Games, puzzles, and other fun software"
-msgstr "Gromadzi gry i inne oprogramowanie rozrywkowe"
+msgstr "Игре, слагалице, и остала забава"
 
 #: ../data/xfce/xfce-graphics.directory.in.h:1
 msgid "Graphics"
-msgstr "Grafika"
+msgstr "Графика"
 
 #: ../data/xfce/xfce-graphics.directory.in.h:2
 msgid "Graphics creation and manipulation applications"
-msgstr "Przechowuje programy służące do tworzenia i modyfikowania grafiki"
+msgstr "Програми за графичко стварање и уређивање"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:1
 msgid "Hardware"
-msgstr "Sprzęt"
+msgstr "Хардвер"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:2
 msgid "Settings for several hardware devices"
-msgstr "Ustawienia do kilku urządzeń sprzętowych"
+msgstr "Подешавања за неке хардверске уређаје"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:1
 msgid "Audio and video players and editors"
-msgstr "Obejmuje odtwarzacze oraz edytory dźwięku i wideo"
+msgstr "Програми за пуштање и уређивање звука и снимака"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:2
 msgid "Multimedia"
-msgstr "Multimedia"
+msgstr "Звук и видео"
 
 #: ../data/xfce/xfce-network.directory.in.h:1
 msgid "Applications for Internet access"
-msgstr "Programy internetowe"
+msgstr "Програми за приступ мрежи"
 
 #: ../data/xfce/xfce-network.directory.in.h:2
 msgid "Internet"
-msgstr "Internet"
+msgstr "Мрежа"
 
 #: ../data/xfce/xfce-office.directory.in.h:1
 msgid "Office"
-msgstr "Biuro"
+msgstr "Канцеларија"
 
 #: ../data/xfce/xfce-office.directory.in.h:2
 msgid "Office and productivity applications"
-msgstr "Przechowuje programy biurowe"
+msgstr "Канцеларијски и производни прогррами"
 
 #: ../data/xfce/xfce-other.directory.in.h:1
 msgid "Applications that don't fit into other categories"
-msgstr "Zawiera programy nie pasujące do innych kategorii"
+msgstr "Програми који не припадају осталим категоријама"
 
 #: ../data/xfce/xfce-other.directory.in.h:2
 msgid "Other"
-msgstr "Inne"
+msgstr "Остало"
 
 #: ../data/xfce/xfce-personal.directory.in.h:1
 msgid "Personal"
-msgstr "Osobiste"
+msgstr "Лично"
 
 #: ../data/xfce/xfce-personal.directory.in.h:2
 msgid "Personal settings"
-msgstr "Ustawienia osobiste"
+msgstr "Лична подешавања"
 
 #: ../data/xfce/xfce-screensavers.directory.in.h:1
 msgid "Screensaver applets"
-msgstr "Gromadzi aplety wygaszacza ekranu"
+msgstr "Програ

[Xfce4-commits] Underscore-prefix desktop shortcuts to allow translation

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to bc3ce47d7d62d36813f330903ff2614c8bb2989b (commit)
   from fa364f5e710fb0d6b58f3ba2d68d5985054082d7 (commit)

commit bc3ce47d7d62d36813f330903ff2614c8bb2989b
Author: Christian Dywan 
Date:   Mon Jun 11 22:55:21 2012 +0200

Underscore-prefix desktop shortcuts to allow translation

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

 data/midori.desktop.in |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/data/midori.desktop.in b/data/midori.desktop.in
index e2d6493..0667f48 100644
--- a/data/midori.desktop.in
+++ b/data/midori.desktop.in
@@ -17,17 +17,17 @@ X-Osso-Service=midori
 X-Ayatana-Desktop-Shortcuts=TabNew;WindowNew;Private
 
 [TabNew Shortcut Group]
-Name=New _Tab
+_Name=New Tab
 Exec=midori -e TabNew
 TargetEnvironment=Unity
 
 [WindowNew Shortcut Group]
-Name=New _Window
+_Name=New Window
 Exec=midori -e WindowNew
 TargetEnvironment=Unity
 
 [Private Shortcut Group]
-Name=New P_rivate Browsing Window
+_Name=New Private Browsing Window
 Exec=midori --private
 TargetEnvironment=Unity
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] MidoriApp: midori_app_get_lib_path should fallback to LIBDIR

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to fa364f5e710fb0d6b58f3ba2d68d5985054082d7 (commit)
   from b9b6f512cecba21de9f91395409dfa46f2efdf1d (commit)

commit fa364f5e710fb0d6b58f3ba2d68d5985054082d7
Author: Paweł Forysiuk 
Date:   Sun Jun 3 13:39:22 2012 +0200

MidoriApp: midori_app_get_lib_path should fallback to LIBDIR

 midori/midori-app.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-app.c b/midori/midori-app.c
index 1b62a70..fddb6d3 100644
--- a/midori/midori-app.c
+++ b/midori/midori-app.c
@@ -1385,7 +1385,7 @@ midori_app_get_lib_path (const gchar* package)
 g_free (path);
 }
 
-return g_build_filename (MDATADIR, package, "lib", NULL);
+return g_build_filename (LIBDIR, PACKAGE_NAME, NULL);
 }
 
 /**
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] MidoriApp: Add missing include for g_access

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to b9b6f512cecba21de9f91395409dfa46f2efdf1d (commit)
   from 0b14449f68ada7613410500d9a7a0c98d8275bde (commit)

commit b9b6f512cecba21de9f91395409dfa46f2efdf1d
Author: Paweł Forysiuk 
Date:   Sun Jun 3 13:38:06 2012 +0200

MidoriApp: Add missing include for g_access

 midori/midori-app.c |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/midori/midori-app.c b/midori/midori-app.c
index d6507e0..1b62a70 100644
--- a/midori/midori-app.c
+++ b/midori/midori-app.c
@@ -24,6 +24,7 @@
 
 #include 
 #include 
+#include 
 #include 
 
 #if ENABLE_NLS
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Cast MidoriView in _midori_browser_set_statusbar_text

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to 0b14449f68ada7613410500d9a7a0c98d8275bde (commit)
   from 4a1e547cdb771f8774b8cca924584931ec80b783 (commit)

commit 0b14449f68ada7613410500d9a7a0c98d8275bde
Author: Paweł Forysiuk 
Date:   Mon Jun 4 22:42:08 2012 +0200

Cast MidoriView in _midori_browser_set_statusbar_text

 midori/midori-browser.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-browser.c b/midori/midori-browser.c
index bae714a..5267d83 100644
--- a/midori/midori-browser.c
+++ b/midori/midori-browser.c
@@ -409,7 +409,7 @@ _midori_browser_set_statusbar_text (MidoriBrowser* browser,
 #else
 GtkAction* action = _action_by_name (browser, "Location");
 MidoriLocationAction* location_action = MIDORI_LOCATION_ACTION 
(action);
-midori_browser_update_secondary_icon (browser, view, action);
+midori_browser_update_secondary_icon (browser, MIDORI_VIEW (view), 
action);
 midori_location_action_set_text (location_action,
 midori_view_get_display_uri (MIDORI_VIEW (view)));
 #endif
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Resolve symlink before looking for exec path

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to 4a1e547cdb771f8774b8cca924584931ec80b783 (commit)
   from f71ebb53a91c0f56f5834d2918afa170643d245c (commit)

commit 4a1e547cdb771f8774b8cca924584931ec80b783
Author: Christian Dywan 
Date:   Mon Jun 4 22:38:14 2012 +0200

Resolve symlink before looking for exec path

 midori/midori-app.c |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/midori/midori-app.c b/midori/midori-app.c
index 280ae1d..d6507e0 100644
--- a/midori/midori-app.c
+++ b/midori/midori-app.c
@@ -1402,6 +1402,7 @@ midori_app_setup (gchar** argument_vector)
 GtkIconSet* icon_set;
 GtkIconFactory* factory;
 gsize i;
+gchar* executable;
 
 typedef struct
 {
@@ -1537,8 +1538,10 @@ midori_app_setup (gchar** argument_vector)
 #ifdef G_OS_WIN32
 exec_path = g_win32_get_package_installation_directory_of_module (NULL);
 #else
+executable = g_file_read_link (command_line[0], NULL);
 exec_path = g_file_get_path (g_file_get_parent (g_file_get_parent 
(g_file_new_for_path (
-g_find_program_in_path (command_line[0]);
+g_find_program_in_path (executable ? executable : command_line[0]);
+g_free (executable);
 #endif
 
 /* Print messages to stdout on Win32 console, cf. AbiWord
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] mime_type shouldn't be const in webkit_web_view_download_requested_cb

2012-06-11 Thread Christian Dywan
Updating branch refs/heads/master
 to f71ebb53a91c0f56f5834d2918afa170643d245c (commit)
   from 9650dd377922291ad087ae280b7db79135d8b837 (commit)

commit f71ebb53a91c0f56f5834d2918afa170643d245c
Author: Christian Dywan 
Date:   Mon Jun 4 22:04:07 2012 +0200

mime_type shouldn't be const in webkit_web_view_download_requested_cb

 midori/midori-view.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/midori/midori-view.c b/midori/midori-view.c
index e839743..8914144 100644
--- a/midori/midori-view.c
+++ b/midori/midori-view.c
@@ -2922,7 +2922,7 @@ webkit_web_view_download_requested_cb (GtkWidget*  
web_view,
 gchar* description;
 gchar* name;
 WebKitWebFrame* web_frame;
-const gchar* mime_type;
+gchar* mime_type;
 WebKitWebDataSource* datasource;
 WebKitNetworkRequest* request;
 WebKitNetworkRequest* original_request;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to 183861ae8180201666adaf8517c2bb5456e79072 (commit)
   from d0a4bd0f15491a7c006920f16584f84da8d3a109 (commit)

commit 183861ae8180201666adaf8517c2bb5456e79072
Author: Per Kongstad 
Date:   Mon Jun 11 16:47:53 2012 +0200

l10n: Updated Danish (da) translation to 100%

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

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

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

diff --git a/po/da.po b/po/da.po
index 188eba7..2b4e18e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-05-28 10:51+\n"
+"POT-Creation-Date: 2012-06-11 11:54+\n"
 "PO-Revision-Date: 2009-01-23 16:43+0100\n"
 "Last-Translator: Per Kongstad \n"
 "Language-Team: Danish \n"
@@ -95,9 +95,9 @@ msgid "Failed to mount device \"%s\"."
 msgstr "Kunne ikke montere enheden \"%s\"."
 
 #: ../panel-plugin/devices.c:303
-#, fuzzy, c-format
+#, c-format
 msgid "Error executing on-mount command \"%s\"."
-msgstr "Mount udvidelsesmodul: Fejl ved kørsel af kommando påmontering."
+msgstr "Fejl ved udførelse af monteringskommandoen \"%s\"."
 
 #. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount Plugin:
 #. Error executing command."),
@@ -249,11 +249,11 @@ msgstr "Vis kun _monteringspunkter"
 msgid ""
 "Trim the device names to the number of characters specified in the spin "
 "button."
-msgstr ""
+msgstr "Tilpas enhedsnavnene til antal karakterer angivet i rulleknappen."
 
 #: ../panel-plugin/mount-plugin.c:970
 msgid "Trim device names: "
-msgstr ""
+msgstr "Tilpasset enhedsnavne: "
 
 #: ../panel-plugin/mount-plugin.c:979
 msgid " characters"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to 37c2c9122f6aaeea2e535d2a6a7b1cab0eef8d1d (commit)
   from 29086ed35597048b53d59d32120cf0229391d540 (commit)

commit 37c2c9122f6aaeea2e535d2a6a7b1cab0eef8d1d
Author: Andhika Padmawan 
Date:   Mon Jun 11 12:03:14 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  517 +++---
 1 files changed, 257 insertions(+), 260 deletions(-)

diff --git a/po/id.po b/po/id.po
index 51b9bdc..dc783c1 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,19 +2,19 @@
 # Copyright (C) 2002-2006 The Xfce development team.
 # This file is distributed under the same license as the xfwm4 package.
 # Andhika Padmawan , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-09 18:54+0200\n"
+"POT-Creation-Date: 2012-06-11 09:00+\n"
 "PO-Revision-Date: 2008-12-21 21: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"
 
 #: ../helper-dialog/helper-dialog.c:84
 msgid ""
@@ -82,237 +82,237 @@ msgid "Settings manager socket"
 msgstr "Pengaturan soket manajer"
 
 #: ../settings-dialogs/xfce-wm-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-dialog.glade.h:1
-msgid "Window Manager"
-msgstr "Manajer Jendela"
-
-#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:29
 msgid "Configure window behavior and shortcuts"
 msgstr "Atur perilaku jendela dan jalan pintas"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:1
-msgid "Window Manager Tweaks"
-msgstr "Tweak Manajer Jendela"
+#: ../settings-dialogs/xfce-wm-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-dialog.glade.h:48
+msgid "Window Manager"
+msgstr "Manajer Jendela"
 
-#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:1
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:16
 msgid "Fine-tune window behaviour and effects"
 msgstr "Atur perilaku jendela dah efek"
 
+#: ../settings-dialogs/xfce-wmtweaks-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:36
+msgid "Window Manager Tweaks"
+msgstr "Tweak Manajer Jendela"
+
 #: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:1
 #: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:1
+msgid "Configure layout, names and margins"
+msgstr "Atur tata letak, nama dan margin"
+
+#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
+#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:5
 msgid "Workspaces"
 msgstr "Ruang Kerja"
 
-#: ../settings-dialogs/xfce-workspaces-settings.desktop.in.h:2
-#: ../settings-dialogs/xfwm4-workspace-dialog.glade.h:2
-msgid "Configure layout, names and margins"
-msgstr ""
+#: ../settings-dialogs/xfwm4-dialog.glade.h:1
+msgid "Box move and resize"
+msgstr "Pindah kotak dan ubah ukuran"
+
+#: ../settings-dialogs/xfwm4-dialog.glade.h:2
+msgid "Button layout"
+msgstr "Tata letak tombol"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:3
-msgid "_Theme"
-msgstr "_Tema"
+msgid "Double click _action"
+msgstr "Aksi klik _ganda"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:4
-msgid "Title fon_t"
-msgstr "Fonta judu_l"
+msgid "Focus model"
+msgstr "Model fokus"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:5
-msgid "Title _alignment"
-msgstr "Perataan _judul"
+msgid "New window focus"
+msgstr "Fokus jendela baru"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:6
-msgid "Click and drag the buttons to change the layout"
-msgstr "Klik dan tarik tombol untuk mengubah tata letak"
+msgid "Raise on click"
+msgstr "Naikkan pada klik"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:7
-msgid "Title"
-msgstr "Judul"
+msgid "Raise on focus"
+msgstr "Naikkan pada fokus"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:8
-msgid "The window title cannot be removed"
-msgstr "Judul jendela tak dapat dihapus"
+msgid "Title _alignment"
+msgstr "Perataan _judul"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:9
-msgid "Active"
-msgstr "Aktif"
+msgid "Title fon_t"
+msgstr "Fonta judu_l"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:10
-msgid "Menu"
-msgstr "Menu"
+msgid "Window _shortcuts"
+msgstr "Jalan _pintas jendela"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:11
-msgid "Stick"
-msgstr "Lekat"
+msgid "Windows snapping"
+msgstr "Magnetisasi jendela"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:12
-msgid "Shade"
-msgstr "Bayang"
+msgid "Wrap workspaces"
+msgstr "Gulung ruang kerja"
 
 #: ../settings-dialogs/xf

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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to ec58002006fd53d0321e953756ad34ef33060b16 (commit)
   from a4ae4d46b477b46d55c735c78240e6cfdab8014f (commit)

commit ec58002006fd53d0321e953756ad34ef33060b16
Author: Andhika Padmawan 
Date:   Mon Jun 11 12:01:05 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  916 +++---
 1 files changed, 462 insertions(+), 454 deletions(-)

diff --git a/po/id.po b/po/id.po
index 0cf23bb..7496123 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,41 +2,37 @@
 # Copyright (C) 2008 THE xfce4-settings'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-settings 
package.
 # Andhika Padmawan , 2010.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-12 22:46+0200\n"
+"POT-Creation-Date: 2012-06-11 07:27+\n"
 "PO-Revision-Date: 2012-02-18 11:31+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"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:1
-#: 
../dialogs/accessibility-settings/xfce4-accessibility-settings.desktop.in.h:1
-msgid "Accessibility"
-msgstr "Aksesibilitas"
+msgid "Acceleration _profile:"
+msgstr "_Profil akselerasi:"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:2
-msgid "Configure keyboard and mouse accessibility"
-msgstr "Atur aksesibilitas papan ketik dan tetikus"
+msgid "Acceleration _time:"
+msgstr "_Waktu akselerasi:"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:3
-msgid "_Enable assistive technologies"
-msgstr "_Aktifkan teknologi pemandu"
+msgid "Acceptance _delay:"
+msgstr "_Jeda penerimaan:"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:4
-msgid ""
-"If enabled, the session manager will start the required applications for "
-"screen readers and magnifiers"
-msgstr ""
-"Jika diaktifkan, manajer sesi akan menjalankan aplikasi yang diperlukan "
-"untuk pembaca dan pembesar layar"
+#: 
../dialogs/accessibility-settings/xfce4-accessibility-settings.desktop.in.h:1
+msgid "Accessibility"
+msgstr "Aksesibilitas"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:5
 msgid ""
@@ -47,73 +43,62 @@ msgstr ""
 "ketika lain kali anda log masuk"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:7
-msgid "No AT-SPI provider was found on your system"
-msgstr "Tak ada penyedia AT-SPI yang ditemukan pada sistem anda"
+msgid "Bounce Keys"
+msgstr "Tombol Pantul"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:8
-msgid "_Assistive Technologies"
-msgstr "_Teknologi Pemandu"
+msgid "Configure keyboard and mouse accessibility"
+msgstr "Atur aksesibilitas papan ketik dan tetikus"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:9
-msgid "Use _sticky keys"
-msgstr "Gunakan tombol _lekat"
+msgid "Disable sticky keys if _two keys are pressed"
+msgstr "Non aktifkan tombol lekat jika _dua tombol ditekan"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:10
 msgid ""
-"When selected, modifier keys (such as Control, Alt, and Shift) do not need "
-"to be held down (they can be pressed and then released) when multiple keys "
-"would normally need to be pressed at the same time"
+"If enabled, the session manager will start the required applications for "
+"screen readers and magnifiers"
 msgstr ""
-"Ketika terpilih, tombol pengubah (seperti Control, Alt, dan Shift) tidak "
-"perlu ditekan (mereka dapat ditekan lalu dilepaskan) seperti tombol banyak "
-"normalnya perlu ditekan pada saat yang bersamaan"
+"Jika diaktifkan, manajer sesi akan menjalankan aplikasi yang diperlukan "
+"untuk pembaca dan pembesar layar"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:11
-msgid "_Lock sticky keys"
-msgstr "_Kunci tombol lekat"
+msgid "K_eystroke delay:"
+msgstr "_Jeda penekanan:"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:12
-msgid ""
-"When selected, modifier keys (such as Control, Alt, and Shift) will remain "
-"locked in the pressed state until pressed again"
-msgstr ""
-"Ketika terpilih, tombol pengubah (seperti Control, Alt, dan Shift) akan "
-"tetap terkunci pada kondisi ditekan sampai ditekan lagi"
+msgid "Keyboa_rd"
+msgstr "Papa_n ketik "
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:13
-msgid "Disable sticky keys if _two keys are pressed"
-msgstr "Non aktifkan tombol lekat jika _dua tombol ditekan"
+msgid "Maximum _speed:"
+msgstr "Kecepatan _maksimum:"
 
 #: ../dialogs/accessibility-settings/accessibility-dia

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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to 2ed091bf7f1aba9901510c20d4d189d97202cb01 (commit)
   from f1974f9ddee1ac0f8ed3db66e939de3007f0537f (commit)

commit 2ed091bf7f1aba9901510c20d4d189d97202cb01
Author: Andhika Padmawan 
Date:   Mon Jun 11 11:58:43 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

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

diff --git a/po/id.po b/po/id.po
index 839e515..fe3f4d3 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-appfinder 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-03 06:45+\n"
+"POT-Creation-Date: 2012-06-11 05:33+\n"
 "PO-Revision-Date: 2009-01-27 22:28+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
@@ -40,11 +40,11 @@ msgstr "Kategori"
 msgid "Filename"
 msgstr "Nama Berkas"
 
-#: ../src/appfinder-model.c:1825
+#: ../src/appfinder-model.c:1829
 msgid "Application has no command"
 msgstr "Tidak ada perntah yang tersedia"
 
-#: ../src/appfinder-model.c:2149
+#: ../src/appfinder-model.c:2153
 msgid "Commands History"
 msgstr "Historis Perintah"
 
@@ -69,38 +69,42 @@ msgstr "Deretan aksi akan dihapus."
 msgid "Are you sure you want to delete pattern \"%s\"?"
 msgstr "Apakah anda ingin menghapus pola \"%s\"?"
 
-#: ../src/appfinder-window.c:216 ../src/main.c:446
+#: ../src/appfinder-window.c:219 ../src/main.c:446
 #: ../src/appfinder-preferences.glade.h:4
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid "Application Finder"
 msgstr "Pencari Aplikasi"
 
-#: ../src/appfinder-window.c:268
+#: ../src/appfinder-window.c:271
 msgid "Toggle view mode"
 msgstr "Beralih model tampilan"
 
-#: ../src/appfinder-window.c:763
+#: ../src/appfinder-window.c:363
+msgid "La_unch"
+msgstr "Jal_ankan"
+
+#: ../src/appfinder-window.c:798
 msgid "Failed to launch desktop item editor"
 msgstr "Gagal menjalankan penyunting item desktop"
 
-#: ../src/appfinder-window.c:789
+#: ../src/appfinder-window.c:824
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
 msgstr "Perintah ini akan menghapus berkas desktop dari folder rumah anda."
 
-#: ../src/appfinder-window.c:790
+#: ../src/appfinder-window.c:825
 #, c-format
 msgid "Are you sure you want to revert \"%s\"?"
 msgstr "Apakah anda ingin mengembalikan kondisi \"%s\"?"
 
-#: ../src/appfinder-window.c:800
+#: ../src/appfinder-window.c:835
 msgid "Failed to remove desktop file"
 msgstr "Gagal menghapus berkas desktop"
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:833
+#: ../src/appfinder-window.c:868
 #, c-format
 msgid ""
 "To unhide the item you have to manually remove the desktop file from \"%s\" "
@@ -110,11 +114,11 @@ msgstr ""
 "\"%s\" atau membuka berkas tersebut di folder yang sama dan menghapus baris "
 "\"%s\"."
 
-#: ../src/appfinder-window.c:838 ../src/appfinder-window.c:923
+#: ../src/appfinder-window.c:873 ../src/appfinder-window.c:965
 msgid "_Hide"
 msgstr "_Sembunyi"
 
-#: ../src/appfinder-window.c:839
+#: ../src/appfinder-window.c:874
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
 msgstr "Apakah anda ingin menyembunyikan \"%s\"?"
@@ -333,9 +337,6 @@ msgstr "Jalankan program"
 #~ msgid "C_lose after launch"
 #~ msgstr "Tutup sete_lah menjalankan"
 
-#~ msgid "Launch"
-#~ msgstr "Jalankan"
-
 #~ msgid "Could not load menu from %s"
 #~ msgstr "Tak dapat memuat menu dari %s"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to d7b2fe6ce23716435d543b7e4b0c93da5b23eccc (commit)
   from c931e4aa72cbe71c232058163350e358a90e4903 (commit)

commit d7b2fe6ce23716435d543b7e4b0c93da5b23eccc
Author: Andhika Padmawan 
Date:   Mon Jun 11 11:57:56 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

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

diff --git a/po/id.po b/po/id.po
index b66502e..8c263c3 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-03-17 22:15+\n"
+"POT-Creation-Date: 2012-06-11 08:36+\n"
 "PO-Revision-Date: 2008-12-21 21:17+0700\n"
 "Last-Translator: Andhika Padmawan \n"
 "Language-Team: Indonesian \n"
@@ -22,7 +22,7 @@ msgid "Backdrop list file is not valid"
 msgstr "Berkas senarai latar belakang tidak sah"
 
 #. no need to escape markup; it's already done for us
-#: ../settings/main.c:165
+#: ../settings/main.c:166
 #, c-format
 msgid ""
 "%s\n"
@@ -31,37 +31,37 @@ msgstr ""
 "%s\n"
 "Ukuran: %dx%d"
 
-#: ../settings/main.c:292 ../src/xfdesktop-special-file-icon.c:271
+#: ../settings/main.c:299 ../src/xfdesktop-special-file-icon.c:271
 #: ../src/xfdesktop-special-file-icon.c:434
 msgid "Home"
 msgstr "Rumah"
 
-#: ../settings/main.c:294
+#: ../settings/main.c:301
 msgid "Filesystem"
 msgstr "Sistem Berkas"
 
-#: ../settings/main.c:296
+#: ../settings/main.c:303
 msgid "Trash"
 msgstr "Tempat Sampah"
 
-#: ../settings/main.c:298
+#: ../settings/main.c:305
 msgid "Removable Devices"
 msgstr "Divais Bisa Pindah"
 
-#: ../settings/main.c:478
+#: ../settings/main.c:485
 #, c-format
 msgid "Cannot create backdrop list \"%s\""
 msgstr "Tak dapat membuat senarai latar belakang \"%s\""
 
-#: ../settings/main.c:482 ../settings/main.c:855
+#: ../settings/main.c:489 ../settings/main.c:862
 msgid "Backdrop List Error"
 msgstr "Galat Senarai Latar Belakang"
 
-#: ../settings/main.c:507
+#: ../settings/main.c:514
 msgid "Create/Load Backdrop List"
 msgstr "Buat/Muat Senarai Latar Belakang"
 
-#: ../settings/main.c:531
+#: ../settings/main.c:538
 #, c-format
 msgid ""
 "File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
@@ -69,91 +69,91 @@ msgstr ""
 "Berkas \"%s\" bukan berkas senarai latar belakang yang sah. Anda ingin "
 "menimpanya?"
 
-#: ../settings/main.c:536
+#: ../settings/main.c:543
 msgid "Invalid List File"
 msgstr "Senarai Berkas Tidak Sah"
 
-#: ../settings/main.c:539
+#: ../settings/main.c:546
 msgid "Overwriting the file will cause its contents to be lost."
 msgstr "Menimpa berkas akan menyebabkan isinya hilang."
 
-#: ../settings/main.c:541
+#: ../settings/main.c:548
 msgid "Replace"
 msgstr "Ganti"
 
-#: ../settings/main.c:851
+#: ../settings/main.c:858
 #, c-format
 msgid "Failed to write backdrop list to \"%s\""
 msgstr "Gagal menulis senarai latar belakang ke \"%s\""
 
-#: ../settings/main.c:878
+#: ../settings/main.c:885
 msgid "Add Image File(s)"
 msgstr "Tambah Berkas Citra"
 
-#: ../settings/main.c:887
+#: ../settings/main.c:894
 msgid "Image files"
 msgstr "Berkas citra"
 
-#: ../settings/main.c:892
+#: ../settings/main.c:899
 msgid "All files"
 msgstr "Semua Berkas"
 
-#: ../settings/main.c:1349
+#: ../settings/main.c:1363
 #, c-format
 msgid "Screen %d, Monitor %d (%s)"
 msgstr "Layar %d, Monitor %d (%s)"
 
-#: ../settings/main.c:1353
+#: ../settings/main.c:1367
 #, c-format
 msgid "Screen %d, Monitor %d"
 msgstr "Layar %d, Monitor %d"
 
-#: ../settings/main.c:1356
+#: ../settings/main.c:1370
 #, c-format
 msgid "Screen %d"
 msgstr "Layar %d"
 
-#: ../settings/main.c:1361
+#: ../settings/main.c:1375
 #, c-format
 msgid "Monitor %d (%s)"
 msgstr "Monitor %d (%s)"
 
-#: ../settings/main.c:1365
+#: ../settings/main.c:1379
 #, c-format
 msgid "Monitor %d"
 msgstr "Monitor %d"
 
-#: ../settings/main.c:1624
+#: ../settings/main.c:1638
 msgid "Settings manager socket"
 msgstr "Soket manajer pengaturan"
 
-#: ../settings/main.c:1624
+#: ../settings/main.c:1638
 msgid "SOCKET ID"
 msgstr "ID SOKET"
 
-#: ../settings/main.c:1625
+#: ../settings/main.c:1639
 msgid "Version information"
 msgstr "Informasi versi"
 
-#: ../settings/main.c:1642
+#: ../settings/main.c:1656
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Ketik '%s --help' untuk penggunaan."
 
-#: ../settings/main.c:1654
+#: ../settings/main.c:1668
 msgid "The Xfce development team. All rights reserved."
 msgstr "Tim pengembang Xfce. Hak cipta dilindungi undang-undang."
 
-#: ../settings/main.c:1655
+#: ../settings/main.c:1669
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Silakan laporkan kutu ke <%s>."
 
-#: ../settings/main.c:1662
+#: ../settings/main.c:1676
 msgid "Desktop Settings"
 msgstr "Pengatura

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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to a1315112a41539045fd88255c03770061501774c (commit)
   from 8a737aecc6a663b07059d58d104e55c1a4726bbd (commit)

commit a1315112a41539045fd88255c03770061501774c
Author: Andhika Padmawan 
Date:   Mon Jun 11 11:56:24 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |  120 +
 1 files changed, 57 insertions(+), 63 deletions(-)

diff --git a/po/id.po b/po/id.po
index 62a4533..78154e6 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,53 +2,53 @@
 # Copyright (C) 2006-2007 The Xfce development team.
 # This file is distributed under the same license as the xfce4-battery-plugin 
package.
 # Andhika Padmawan , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-battery-plugin 0.5.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-04-23 17:18+0200\n"
+"POT-Creation-Date: 2012-06-11 05:39+\n"
 "PO-Revision-Date: 2008-06-19 08:55+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"
 
-#: ../panel-plugin/battery.c:551
+#: ../panel-plugin/battery.c:536
 msgid "(No battery, AC on-line)"
 msgstr "(Tak ada baterai, tersambung AC)"
 
-#: ../panel-plugin/battery.c:553
+#: ../panel-plugin/battery.c:538
 msgid "(Charging from AC)"
 msgstr "(Mengisi dari AC)"
 
-#: ../panel-plugin/battery.c:553
+#: ../panel-plugin/battery.c:538
 msgid "(AC on-line)"
 msgstr "(Terhubung dengan AC)"
 
-#: ../panel-plugin/battery.c:563
+#: ../panel-plugin/battery.c:548
 #, c-format
 msgid "%d%% (%02d:%02d) remaining"
 msgstr "%d%% (%02d:%02d) lagi"
 
-#: ../panel-plugin/battery.c:565
+#: ../panel-plugin/battery.c:550
 #, c-format
 msgid "%02d:%02d remaining"
 msgstr "%02d:%02d lagi"
 
-#: ../panel-plugin/battery.c:567
+#: ../panel-plugin/battery.c:552
 #, c-format
 msgid "%d%% remaining"
 msgstr "%d%% lagi"
 
-#: ../panel-plugin/battery.c:569
+#: ../panel-plugin/battery.c:554
 #, c-format
 msgid "AC off-line"
 msgstr "AC terputus"
 
-#: ../panel-plugin/battery.c:637
+#: ../panel-plugin/battery.c:624
 msgid ""
 "WARNING: Your battery has reached critical status. You should plug in or "
 "shutdown your computer now to avoid possible data loss."
@@ -57,7 +57,7 @@ msgstr ""
 "mencolokkan listrik atau mematikan komputer anda sekarang untuk menghindari "
 "kemungkinan hilangnya data."
 
-#: ../panel-plugin/battery.c:655
+#: ../panel-plugin/battery.c:642
 msgid ""
 "WARNING: Your battery is running low. You should consider plugging in or "
 "shutting down your computer soon to avoid possible data loss."
@@ -66,145 +66,139 @@ msgstr ""
 "mematikan komputer anda sesegera mungkin untuk menghindari kemungkinan "
 "hilangnya data."
 
-#: ../panel-plugin/battery.c:709
+#: ../panel-plugin/battery.c:678
 msgid "Battery"
 msgstr "Baterai"
 
-#: ../panel-plugin/battery.c:1285
+#: ../panel-plugin/battery.c:1205
 msgid "Select file"
 msgstr "Pilih berkas"
 
-#: ../panel-plugin/battery.c:1326
+#: ../panel-plugin/battery.c:1246
 msgid "Select command"
 msgstr "Pilih perintah"
 
-#: ../panel-plugin/battery.c:1341
-#, fuzzy
+#: ../panel-plugin/battery.c:1261
 msgid "Select color"
-msgstr "Pilih berkas"
+msgstr "Pilih warna"
 
-#: ../panel-plugin/battery.c:1383
+#: ../panel-plugin/battery.c:1303
 #, c-format
 msgid "Unable to open the following url: %s"
 msgstr "Tak dapat membuka url berikut: %s"
 
-#: ../panel-plugin/battery.c:1408 ../panel-plugin/battery.desktop.in.h:1
+#: ../panel-plugin/battery.c:1328 ../panel-plugin/battery.desktop.in.h:1
 msgid "Battery Monitor"
 msgstr "Monitor Baterai"
 
-#: ../panel-plugin/battery.c:1415
+#: ../panel-plugin/battery.c:1335
 msgid "Properties"
-msgstr ""
+msgstr "Properti"
 
-#: ../panel-plugin/battery.c:1441
+#: ../panel-plugin/battery.c:1361
 msgid "On AC:"
-msgstr ""
+msgstr "Di AC:"
 
-#: ../panel-plugin/battery.c:1458
-#, fuzzy
+#: ../panel-plugin/battery.c:1378
 msgid "Battery high:"
-msgstr "Baterai"
+msgstr "Baterai penuh:"
 
-#: ../panel-plugin/battery.c:1475
-#, fuzzy
+#: ../panel-plugin/battery.c:1395
 msgid "Battery low:"
-msgstr "Baterai"
+msgstr "Baterai kosong:"
 
-#: ../panel-plugin/battery.c:1492
-#, fuzzy
+#: ../panel-plugin/battery.c:1412
 msgid "Battery critical:"
-msgstr "Monitor Baterai"
+msgstr "Baterai kritis"
 
-#: ../panel-plugin/battery.c:1506
+#: ../panel-plugin/battery.c:1426
 msgid "Bar _colors"
-msgstr ""
+msgstr "Warna _batang"
 
-#: ../panel-plugin/battery.c:1520
+#: ../panel-plugin/battery.c:1440
 msgid "Low percentage:"
 msgstr "Persentase rendah:"
 
-#: ../panel-plugin/battery.c:1533
+#: ../panel-plugin/battery.c:1453
 msgid "Low battery action:"
 msgstr "Aksi baterai habis:"
 
-#: ../panel-plugin/battery.c:1539 ../panel-plugin/battery.c:1591
+#: ..

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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to 4ac1e47b9186dbb3354c73bb31d227168784c20e (commit)
   from 8aab680fd5ae8aa4ea032273624d620fcf44fad0 (commit)

commit 4ac1e47b9186dbb3354c73bb31d227168784c20e
Author: Andhika Padmawan 
Date:   Mon Jun 11 11:54:42 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

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

diff --git a/po/id.po b/po/id.po
index 0bc4fba..57e0230 100644
--- a/po/id.po
+++ b/po/id.po
@@ -2,7 +2,7 @@
 # Copyright (C) 2003-2004 Roger Seguin.
 # This file is distributed under the same license as the xfce4-diskperf-plugin 
package.
 # Andhika Padmawan , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-diskperf-plugin 2.0\n"
@@ -11,10 +11,10 @@ msgstr ""
 "PO-Revision-Date: 2008-06-20 16:11+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"
 
 #: ../panel-plugin/config_gui.c:101
 msgid "Device"
@@ -25,9 +25,8 @@ msgid "Input the device name, then press "
 msgstr "Masukkan nama divais, kemudian tekan "
 
 #: ../panel-plugin/config_gui.c:118
-#, fuzzy
 msgid "/dev/sda1"
-msgstr "/dev/hda1"
+msgstr "/dev/sda1"
 
 #: ../panel-plugin/config_gui.c:136
 msgid "Data collection period"
@@ -62,9 +61,8 @@ msgid "I/O transfer"
 msgstr "Transfer I/O"
 
 #: ../panel-plugin/config_gui.c:181
-#, fuzzy
 msgid "MiB transferred / second"
-msgstr "MB ditransfer / detik"
+msgstr "MiB ditransfer / detik"
 
 #: ../panel-plugin/config_gui.c:187
 msgid "Busy time"
@@ -75,9 +73,8 @@ msgid "Percentage of time the device is busy"
 msgstr "Persentase waktu ketika divais sibuk"
 
 #: ../panel-plugin/config_gui.c:202
-#, fuzzy
 msgid "Max. I/O rate (MiB/s) "
-msgstr "Rasio maksimum I/O (MB/s)"
+msgstr "Rasio maksimum I/O (MiB/s)"
 
 #: ../panel-plugin/config_gui.c:213
 msgid "Input the maximum I/O transfer rate of the device, then press "
@@ -135,7 +132,7 @@ msgstr "\"Tulis\" monitor dahulu"
 #: ../panel-plugin/main.c:180
 #, c-format
 msgid "%s: Device statistics unavailable."
-msgstr ""
+msgstr "%s: Statistik divais tidak tersedia."
 
 #: ../panel-plugin/main.c:219
 #, c-format
@@ -151,6 +148,16 @@ msgid ""
 "  Write : %3d\n"
 "  Total : %3d"
 msgstr ""
+"%s\n"
+"\n"
+"I/O(MiB/d)\n"
+"  Dibaca :%3.2f\n"
+"  Ditulis :%3.2f\n"
+"  Total :%3.2f\n"
+"Waktu sibuk (%c)\n"
+"  Dibaca : %3d\n"
+"  Ditulis : %3d\n"
+"  Total : %3d"
 
 #: ../panel-plugin/main.c:823
 msgid "Select color"
@@ -205,11 +212,11 @@ msgstr ""
 msgid ""
 "Diskperf monitor displays instantaneous disk I/O transfer rates and busy "
 "times"
-msgstr ""
+msgstr "Monitor Diskperf menampilkan rasio transfer dan waktu sibuk I/O cakram 
secara instan"
 
 #: ../panel-plugin/main.c:916
 msgid "Copyright (c) 2003, 2004 Roger Seguin"
-msgstr ""
+msgstr "Hak Cipta 2003, 2004 Roger Seguin"
 
 #: ../panel-plugin/main.c:952 ../panel-plugin/diskperf.desktop.in.h:1
 msgid "Disk Performance Monitor"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


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

2012-06-11 Thread Transifex
Updating branch refs/heads/master
 to d0a4bd0f15491a7c006920f16584f84da8d3a109 (commit)
   from a7ec47eee18e981d19a8ef4adc91c4ec535e724a (commit)

commit d0a4bd0f15491a7c006920f16584f84da8d3a109
Author: Andhika Padmawan 
Date:   Mon Jun 11 11:51:56 2012 +0200

l10n: Updated Indonesian (id) translation to 100%

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

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

 po/id.po |   42 ++
 1 files changed, 22 insertions(+), 20 deletions(-)

diff --git a/po/id.po b/po/id.po
index 465749a..d93f056 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,19 +3,19 @@
 # Copytight (C) 2005-2007 Fabian Nowak.
 # This file is distributed under the same license as the xfce4-mount-plugin 
package.
 # Andhika Padmawan , 2008.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-05-14 00:16+0200\n"
+"POT-Creation-Date: 2012-06-11 06:33+\n"
 "PO-Revision-Date: 2008-12-19 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"
 
 #: ../panel-plugin/devices.c:71
 #, c-format
@@ -83,31 +83,34 @@ msgid "not mounted\n"
 msgstr "tak dikait\n"
 
 #. show error message if smth failed
-#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount 
Plugin:\n\nError executing command."),
-#. _("Return value:"), WEXITSTATUS(exit_status), _("\nError was:"), erroutput);
+#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount
+#. Plugin:\n\nError executing command."),
+#. _("Return value:"), WEXITSTATUS(exit_status), _("\nError was:"),
+#. erroutput);
 #: ../panel-plugin/devices.c:288
 #, c-format
 msgid "Failed to mount device \"%s\"."
-msgstr ""
+msgstr "Gagal mengaitkan divais \"%s\"."
 
 #: ../panel-plugin/devices.c:303
-#, fuzzy, c-format
+#, c-format
 msgid "Error executing on-mount command \"%s\"."
-msgstr "Plugin Kait: Galat mengeksekusi perintah."
+msgstr "Galat mengeksekusi perintah saat mengaitkan \"%s\"."
 
-#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount Plugin: 
Error executing command."),
+#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount Plugin:
+#. Error executing command."),
 #. _("Returned"), WEXITSTATUS(exit_status), _("error was"), erroutput);
-#: ../panel-plugin/devices.c:353
+#: ../panel-plugin/devices.c:357
 #, c-format
 msgid "Failed to umount device \"%s\"."
-msgstr ""
+msgstr "Gagal melepaskan divais \"%s\"."
 
-#: ../panel-plugin/devices.c:356
+#: ../panel-plugin/devices.c:360
 #, c-format
 msgid "The device \"%s\" should be removable safely now."
 msgstr "Divais \"%s\" dapat dilepas dengan aman sekarang."
 
-#: ../panel-plugin/devices.c:358
+#: ../panel-plugin/devices.c:362
 #, c-format
 msgid "An error occurred. The device \"%s\" should not be removed!"
 msgstr "Galat terjadi. Divais \"%s\" jangan sampai dilepas!"
@@ -125,9 +128,8 @@ msgid "Mount Plugin"
 msgstr "Plugin Kait"
 
 #: ../panel-plugin/mount-plugin.c:711
-#, fuzzy
 msgid "Properties"
-msgstr "Sunting Properti"
+msgstr "Properti"
 
 #: ../panel-plugin/mount-plugin.c:745
 msgid ""
@@ -245,15 +247,15 @@ msgstr "Hanya _tampilkan titik kait"
 msgid ""
 "Trim the device names to the number of characters specified in the spin "
 "button."
-msgstr ""
+msgstr "Potong nama divais menjadi jumlah karakter yang ditentukan dalam 
tombol putar."
 
 #: ../panel-plugin/mount-plugin.c:970
 msgid "Trim device names: "
-msgstr ""
+msgstr "Potong nama divais:"
 
 #: ../panel-plugin/mount-plugin.c:979
 msgid " characters"
-msgstr ""
+msgstr "karakter"
 
 #: ../panel-plugin/mount-plugin.c:996
 msgid ""
@@ -275,11 +277,11 @@ msgstr "_Sistem berkas"
 
 #: ../panel-plugin/mount-plugin.c:1046
 msgid "Show partitions/devices and allow to mount/unmount them"
-msgstr ""
+msgstr "Tampilkan partisi/divais dan izinkan untuk mengaitkan/melepaskan 
mereka"
 
 #: ../panel-plugin/mount-plugin.c:1048
 msgid "Copyright (c) 2005-2012\n"
-msgstr ""
+msgstr "Hak Cipta 2005-2012\n"
 
 #: ../panel-plugin/xfce4-mount-plugin.desktop.in.h:1
 msgid "Mount devices"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits