[Xfce4-commits] [xfce/xfdesktop] 01/01: Add padding to Window Actions menu entry (Bug #14628)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

andre pushed a 
commit to branch 
master
in repository xfce/xfdesktop.

commit 7328581b30410d7e29e68ee5d356d9627feaa544
Author: Theo Linkspfeifer 
Date:   Tue Jul 9 15:04:04 2019 +0200

Add padding to Window Actions menu entry (Bug #14628)
---
 src/xfdesktop-window-icon.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/xfdesktop-window-icon.c b/src/xfdesktop-window-icon.c
index f6e4396..b2c490f 100644
--- a/src/xfdesktop-window-icon.c
+++ b/src/xfdesktop-window-icon.c
@@ -29,6 +29,7 @@
 #include 
 #include 
 
+#include "xfdesktop-common.h"
 #include "xfdesktop-window-icon.h"
 
 struct _XfdesktopWindowIconPrivate
@@ -186,9 +187,10 @@ xfdesktop_window_icon_populate_context_menu(XfdesktopIcon 
*icon,
 {
 XfdesktopWindowIcon *window_icon = XFDESKTOP_WINDOW_ICON(icon);
 GtkWidget *amenu = wnck_action_menu_new(window_icon->priv->window);
-GtkWidget *mi;
+GtkWidget *mi, *img;
 
-mi = gtk_menu_item_new_with_mnemonic(_("_Window Actions"));
+img = gtk_image_new_from_icon_name("", GTK_ICON_SIZE_MENU);
+mi = xfdesktop_menu_create_menu_item_with_mnemonic(_("_Window Actions"), 
img);
 gtk_menu_item_set_submenu (GTK_MENU_ITEM(mi), amenu);
 gtk_menu_shell_append(GTK_MENU_SHELL(menu), mi);
 gtk_widget_show_all(mi);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] branch master updated (972a20a -> 7328581)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

andre pushed a 
change to branch 
master
in repository xfce/xfdesktop.

  from  972a20a   I18n: Update translation uk (100%).
   new  7328581   Add padding to Window Actions menu entry (Bug #14628)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/xfdesktop-window-icon.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] branch master updated (5377b8c -> 92ddf97)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-settings.

  from  5377b8c   I18n: Update translation uk (85%).
   new  92ddf97   xfsettingsd: Start with the highest priority (Bug #15697)

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 xfsettingsd/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] 01/01: xfsettingsd: Start with the highest priority (Bug #15697)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-settings.

commit 92ddf97f8e8b976c3aa4483e2a5d1a23078ae84f
Author: Olivier Fourdan 
Date:   Wed Jul 10 21:16:18 2019 +0200

xfsettingsd: Start with the highest priority (Bug #15697)

Start the settings daemon with the highest priority, so it gets started
first, because all other components depend on the settings applied by
xfsettingsd and applying those after the other components have started
is very expensive, clients have to reconfigure themselves, reload fonts,
themes, reload configuration, etc.

If we load the settings first, the other applications do not need all
that reconfiguration and therefore we end up starting the whole session
faster.

Signed-off-by: Olivier Fourdan 
---
 xfsettingsd/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfsettingsd/main.c b/xfsettingsd/main.c
index 692f18d..3d95fdd 100644
--- a/xfsettingsd/main.c
+++ b/xfsettingsd/main.c
@@ -130,7 +130,7 @@ on_name_acquired (GDBusConnection *connection,
 s_data->sm_client = xfce_sm_client_get ();
 xfce_sm_client_set_restart_style (s_data->sm_client, 
XFCE_SM_CLIENT_RESTART_IMMEDIATELY);
 xfce_sm_client_set_desktop_file (s_data->sm_client, 
XFSETTINGS_DESKTOP_FILE);
-xfce_sm_client_set_priority (s_data->sm_client, 20);
+xfce_sm_client_set_priority (s_data->sm_client, 
XFCE_SM_CLIENT_PRIORITY_HIGHEST);
 g_signal_connect (G_OBJECT (s_data->sm_client), "quit", G_CALLBACK 
(gtk_main_quit), NULL);
 if (!xfce_sm_client_connect (s_data->sm_client, ) && error)
 {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-session] 01/01: session: Serialize startup of xfsettings daemon

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-session.

commit 195b423599fd1cde5204a281846318c820e11a61
Author: Olivier Fourdan 
Date:   Mon Jul 8 21:55:28 2019 +0200

session: Serialize startup of xfsettings daemon

Bug: 15485

Avoid a possible race where xfsettings daemon would apply an XrandR
config while the window and compositor manager are starting, causing a
possible mismatch in configuration.
---
 settings/xfce4-session.xml | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/settings/xfce4-session.xml b/settings/xfce4-session.xml
index 66d28df..03e62c3 100644
--- a/settings/xfce4-session.xml
+++ b/settings/xfce4-session.xml
@@ -10,14 +10,15 @@
   
   
   
-
+
+
   
-  
+  
   
   
-
+
   
-  
+  
   
   
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-session] branch master updated (d946a9c -> 195b423)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-session.

  from  d946a9c   I18n: Update translation uk (100%).
   new  195b423   session: Serialize startup of xfsettings daemon

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 settings/xfce4-session.xml | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] branch master updated (ed46a31 -> 3bf33d3)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

f2404 pushed a 
change to branch 
master
in repository apps/ristretto.

  from  ed46a31   I18n: Update translation eu (98%).
   new  3bf33d3   Free EXIF data properly

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/file.c | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] 01/01: Free EXIF data properly

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

f2404 pushed a 
commit to branch 
master
in repository apps/ristretto.

commit 3bf33d3767011f7d461b66ce924d514dcede5c35
Author: Igor 
Date:   Wed Jul 10 14:58:53 2019 -0400

Free EXIF data properly
---
 src/file.c | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/file.c b/src/file.c
index 7c9ecd4..f8f3724 100644
--- a/src/file.c
+++ b/src/file.c
@@ -213,6 +213,11 @@ rstto_file_dispose (GObject *object)
 g_free (r_file->priv->collate_key);
 r_file->priv->collate_key = NULL;
 }
+if (r_file->priv->exif_data)
+{
+exif_data_free (r_file->priv->exif_data);
+r_file->priv->exif_data = NULL;
+}
 
 for (i = 0; i < THUMBNAIL_SIZE_COUNT; ++i)
 {
@@ -512,8 +517,6 @@ rstto_file_get_orientation ( RsttoFile *r_file )
 r_file->priv->orientation = exif_get_short (
 exif_entry->data,
 exif_data_get_byte_order (exif_entry->parent->parent));
-
-exif_entry_free (exif_entry);
 }
 
 /* If the orientation-tag is not set, default to NONE */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (678997f -> b08b7b3)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

andre pushed a 
change to branch 
master
in repository xfce/xfce4-power-manager.

  from  678997f   I18n: Update translation uk (100%).
   new  b08b7b3   Fix typo

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/xfpm-suspend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: Fix typo

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

andre pushed a 
commit to branch 
master
in repository xfce/xfce4-power-manager.

commit b08b7b3a2075de5ff9776ee22922deba75605fff
Author: Andre Miranda 
Date:   Wed Jul 10 13:57:44 2019 -0300

Fix typo
---
 src/xfpm-suspend.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/xfpm-suspend.c b/src/xfpm-suspend.c
index d7f460d..464dd44 100644
--- a/src/xfpm-suspend.c
+++ b/src/xfpm-suspend.c
@@ -114,7 +114,7 @@ linux_supports_sleep_state (const gchar *state)
 
 /* run script from pm-utils */
 command = g_strdup_printf ("/usr/bin/pm-is-supported --%s", state);
-g_debug ("excuting command: %s", command);
+g_debug ("executing command: %s", command);
 ret = g_spawn_command_line_sync (command, NULL, NULL, _status, 
);
 if (!ret) {
 g_warning ("failed to run script: %s", error->message);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-cpufreq-plugin] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-cpufreq-plugin.

commit f05cecc31d99c7de66d2d49fe6cb02be93b8a434
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:32:13 2019 +0200

I18n: Update translation th (100%).

41 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 80 
 1 file changed, 40 insertions(+), 40 deletions(-)

diff --git a/po/th.po b/po/th.po
index 04b0b65..9079089 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-18 06:32+0200\n"
-"PO-Revision-Date: 2018-06-18 10:14+\n"
+"POT-Creation-Date: 2019-06-09 18:31+0200\n"
+"PO-Revision-Date: 2019-07-10 09:15+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -19,15 +19,15 @@ msgstr ""
 "Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:80
+#: ../panel-plugin/xfce4-cpufreq-configure.c:78
 msgid "Select font..."
 msgstr "เลือกแบบอักษร..."
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:82
+#: ../panel-plugin/xfce4-cpufreq-configure.c:79
 msgid "Select font family and size to use for the labels."
 msgstr "เลือกแบบอักษรและขนาดที่จะใช้กับฉลากต่างๆ"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:86
+#: ../panel-plugin/xfce4-cpufreq-configure.c:84
 msgid "Right-click to revert to the default font."
 msgstr "คลิกขวาเพื่อคืนกลับเป็นแบบอักษรปริยาย"
 
@@ -35,80 +35,80 @@ msgstr "คลิกขวาเพื่อคืนกลับเป็นแ
 msgid "Select font"
 msgstr "เลือกแบบอักษร"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:199
+#: ../panel-plugin/xfce4-cpufreq-configure.c:215
 msgid "Configure CPU Frequency Monitor"
 msgstr "ตั้งค่าปลั๊กอินเฝ้าสังเกตความถี่ซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:204
+#: ../panel-plugin/xfce4-cpufreq-configure.c:219
 msgid "Configure the CPU frequency plugin"
 msgstr "ตั้งค่าปลั๊กอินความถี่ซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:222
+#: ../panel-plugin/xfce4-cpufreq-configure.c:239
 msgid "Monitor"
 msgstr "การเฝ้าสังเกต"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:245
+#: ../panel-plugin/xfce4-cpufreq-configure.c:256
 msgid "_Update interval:"
 msgstr "ช่วงเวลา_ปรับข้อมูล:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:263
+#: ../panel-plugin/xfce4-cpufreq-configure.c:274
 msgid "Panel"
 msgstr "พาเนล"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:287
+#: ../panel-plugin/xfce4-cpufreq-configure.c:295
 msgid "_Font:"
 msgstr "แบบ_อักษร:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:306
+#: ../panel-plugin/xfce4-cpufreq-configure.c:314
 msgid "_Font color:"
 msgstr "_สีตัวอักษร:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:316
+#: ../panel-plugin/xfce4-cpufreq-configure.c:324
 msgid "Select font color"
 msgstr "เลือกสีตัวอักษร"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:326
+#: ../panel-plugin/xfce4-cpufreq-configure.c:334
 msgid "_Display CPU:"
 msgstr "แสด_งซีพียู:"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:342
+#: ../panel-plugin/xfce4-cpufreq-configure.c:351
 msgid "min"
 msgstr "ต่ำสุด"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:343
+#: ../panel-plugin/xfce4-cpufreq-configure.c:352
 msgid "avg"
 msgstr "เฉลี่ย"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:344
+#: ../panel-plugin/xfce4-cpufreq-configure.c:353
 msgid "max"
 msgstr "สูงสุด"
 
 #. check buttons for display widgets in panel
-#: ../panel-plugin/xfce4-cpufreq-configure.c:350
+#: ../panel-plugin/xfce4-cpufreq-configure.c:359
 msgid "_Keep compact"
 msgstr "ขนาด_กะทัดรัด"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:355
+#: ../panel-plugin/xfce4-cpufreq-configure.c:364
 msgid "Show text in a single _line"
 msgstr "แสดงข้อความใน_บรรทัดเดียว"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:360
+#: ../panel-plugin/xfce4-cpufreq-configure.c:369
 msgid "Show CPU _icon"
 msgstr "แสดงไอ_คอนซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:367
+#: ../panel-plugin/xfce4-cpufreq-configure.c:376
 msgid "Show CPU fre_quency"
 msgstr "แสดงความ_ถี่ซีพียู"
 
-#: ../panel-plugin/xfce4-cpufreq-configure.c:372
+#: ../panel-plugin/xfce4-cpufreq-configure.c:381
 msgid "Show CPU _governor"
 msgstr "แสดงวิธีควบคุ_มความถี่"
 
-#: ../panel-plugin/xfce4-cpufreq-linux.c:465
+#: ../panel-plugin/xfce4-cpufreq-linux.c:73
 msgid ""
 "Your system does not support cpufreq.\n"
-"The applet only shows the current cpu frequency"
-msgstr "ระบบของคุณไม่รองรับ 
cpufreq\nแอพเพล็ตจะแสดงเฉพาะความถี่ปัจจุบันของซีพียูเท่านั้น"
+"The plugin only shows the current cpu frequency"
+msgstr "ระบบของคุณไม่รองรับ 

[Xfce4-commits] [xfce/xfwm4] branch master updated (b56bb5e -> 5b0d805)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/xfwm4.

  from  b56bb5e   I18n: Update translation uk (100%).
   new  5b0d805   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 68 ++--
 1 file changed, 28 insertions(+), 40 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-cpugraph-plugin] branch master updated (81ad4da -> 85299bd)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-cpugraph-plugin.

  from  81ad4da   I18n: Update translation uk (100%).
   new  85299bd   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 86 +---
 1 file changed, 45 insertions(+), 41 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-cpufreq-plugin] branch master updated (196f6d9 -> f05cecc)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-cpufreq-plugin.

  from  196f6d9   I18n: Update translation uk (100%).
   new  f05cecc   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 80 
 1 file changed, 40 insertions(+), 40 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfwm4] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/xfwm4.

commit 5b0d805cc36df00d00d8ab59b5beef009b2a42b4
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:33:05 2019 +0200

I18n: Update translation th (100%).

168 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 68 ++--
 1 file changed, 28 insertions(+), 40 deletions(-)

diff --git a/po/th.po b/po/th.po
index 144085e..19b6b32 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1,7 +1,7 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
 # Theppitak Karoonboonyanan , 2013
 # Theppitak Karoonboonyanan , 2013,2015,2018
@@ -9,23 +9,21 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-06-18 22:23+0200\n"
-"PO-Revision-Date: 2019-04-27 22:36+\n"
+"POT-Creation-Date: 2019-06-25 00:32+0200\n"
+"PO-Revision-Date: 2019-07-10 08:15+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai (http://www.transifex.com/xfce/xfwm4/language/th/)\n"
-"Language: th\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../helper-dialog/helper-dialog.c:94
 msgid ""
 "This window might be busy and is not responding.\n"
 "Do you want to terminate the application?"
-msgstr ""
-"หน้าต่างนี้อาจกำลังทำงานอยู่และไม่มีการตอบสนอง\n"
-"คุณต้องการจบการทำงานของโปรแกรมนี้หรือไม่?"
+msgstr 
"หน้าต่างนี้อาจกำลังทำงานอยู่และไม่มีการตอบสนอง\nคุณต้องการจบการทำงานของโปรแกรมนี้หรือไม่?"
 
 #: ../helper-dialog/helper-dialog.c:99
 msgid "Warning"
@@ -64,9 +62,7 @@ msgstr "."
 msgid ""
 "%s: %s\n"
 "Try %s --help to see a full list of available command line options.\n"
-msgstr ""
-"%s: %s\n"
-"ลองสั่ง %s --help เพื่อดูตัวเลือกทั้งหมดของบรรทัดคำสั่ง\n"
+msgstr "%s: %s\nลองสั่ง %s --help เพื่อดูตัวเลือกทั้งหมดของบรรทัดคำสั่ง\n"
 
 #: ../settings-dialogs/workspace-settings.c:81
 #: ../settings-dialogs/workspace-settings.c:96
@@ -371,8 +367,8 @@ msgstr "ไม่สามารถสร้างกล่องโต้ตอ
 
 #: ../settings-dialogs/xfwm4-settings.c:1946
 msgid ""
-"This will reset all shortcuts to their default values. Do you really want to "
-"do this?"
+"This will reset all shortcuts to their default values. Do you really want to"
+" do this?"
 msgstr "นี่จะเป็นการล้างค่าปุ่มลัดต่างๆ กลับเป็นค่าปริยาย 
ยืนยันที่จะล้างค่าหรือไม่?"
 
 #: ../settings-dialogs/xfwm4-settings.c:1948
@@ -383,9 +379,7 @@ msgstr "ล้างคืนเป็นค่าปริยาย"
 msgid ""
 "S_kip windows that have \"skip pager\"\n"
 "or \"skip taskbar\" properties set"
-msgstr ""
-"_ข้ามหน้าต่างที่มีการกำหนดคุณสมบัติ \"skip pager\"\n"
-"(ข้ามในโปรแกรมพื้นที่ทำงาน) หรือ \"skip taskbar\" (ข้ามในทาสก์บาร์)"
+msgstr "_ข้ามหน้าต่างที่มีการกำหนดคุณสมบัติ \"skip 
pager\"\n(ข้ามในโปรแกรมพื้นที่ทำงาน) หรือ \"skip taskbar\" (ข้ามในทาสก์บาร์)"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:5
 msgid "_Include hidden (i.e. iconified) windows"
@@ -460,17 +454,17 @@ msgid "Use _edge resistance instead of window snapping"
 msgstr "ใช้ระยะต้านที่ขอ_บแทนการดูดติดขอบหน้าต่าง"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:24
+msgid "Use mouse wheel on title bar to ro_ll up the window"
+msgstr "ใช้การกลิ้งลูกกลิ้งเมาส์บนแถบหัวหน้าต่างเพื่อม้ว_นหน้าต่างขึ้น"
+
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:25
 msgid "Notify of _urgency by making window's decoration blink"
 msgstr "แจ้งเ_หตุความเร่งด่วนโดยกะพริบกรอบหน้าต่าง"
 
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:25
+#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:26
 msgid "Keep urgent windows _blinking repeatedly"
 msgstr "_กะพริบหน้าต่างเร่งด่วนอย่างต่อเนื่อง"
 
-#: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:26
-msgid "Use mouse wheel on title bar to ro_ll up the window"
-msgstr "ใช้การกลิ้งลูกกลิ้งเมาส์บนแถบหัวหน้าต่างเพื่อม้ว_นหน้าต่างขึ้น"
-
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:27
 msgid "_Accessibility"
 msgstr "สิ่ง_อำนวยความสะดวก"
@@ -483,9 +477,7 @@ msgstr "ใช้การกลิ้งลูกกลิ้งเ_มาส
 msgid ""
 "_Remember and recall previous workspace\n"
 "when switching via keyboard shortcuts"
-msgstr ""
-"_จำและเรียกคืนพื้นที่ทำงานก่อนหน้า\n"
-"เมื่อสลับด้วยปุ่มลัดแป้นพิมพ์"
+msgstr "_จำและเรียกคืนพื้นที่ทำงานก่อนหน้า\nเมื่อสลับด้วยปุ่มลัดแป้นพิมพ์"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:31
 msgid "Wrap workspaces depending on the actual desktop _layout"
@@ -659,7 +651,7 @@ msgstr "ย่_อเก็บ"
 
 #: ../src/menu.c:54
 msgid "Minimize _Other Windows"
-msgstr "ย่อเก็บหน้าต่างอื่น_ทั้งหมด"
+msgstr "ย่อเก็บหน้าต่างอื่_น"
 
 #: ../src/menu.c:55
 

[Xfce4-commits] [panel-plugins/xfce4-cpugraph-plugin] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-cpugraph-plugin.

commit 85299bd20b888f866a20daf0c1b42467353d6e15
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:32:20 2019 +0200

I18n: Update translation th (100%).

38 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 86 +---
 1 file changed, 45 insertions(+), 41 deletions(-)

diff --git a/po/th.po b/po/th.po
index 15c22b4..25254c4 100644
--- a/po/th.po
+++ b/po/th.po
@@ -4,13 +4,13 @@
 # 
 # Translators:
 # Theppitak Karoonboonyanan , 2014
-# Theppitak Karoonboonyanan , 2014
+# Theppitak Karoonboonyanan , 2014,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-03 20:54+0200\n"
-"PO-Revision-Date: 2017-09-23 19:10+\n"
+"POT-Creation-Date: 2019-06-23 00:31+0200\n"
+"PO-Revision-Date: 2019-07-10 09:38+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -19,149 +19,153 @@ msgstr ""
 "Language: th\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/cpu.c:153 ../panel-plugin/cpugraph.desktop.in.h:2
+#: ../panel-plugin/cpu.c:160 ../panel-plugin/cpugraph.desktop.in.h:2
 msgid "Graphical representation of the CPU load"
 msgstr "แสดงโหลดของซีพียูในแบบกราฟิกส์"
 
-#: ../panel-plugin/cpu.c:155
-msgid "Copyright (c) 2003-2012\n"
-msgstr "Copyright (c) 2003-2012\n"
+#: ../panel-plugin/cpu.c:162
+msgid "Copyright (c) 2003-2019\n"
+msgstr "Copyright (c) 2003-2019\n"
 
-#: ../panel-plugin/cpu.c:368
+#: ../panel-plugin/cpu.c:407
 #, c-format
 msgid "Usage: %u%%"
 msgstr "ใช้งาน: %u%%"
 
-#: ../panel-plugin/properties.c:80
+#: ../panel-plugin/properties.c:132
 msgid "CPU Graph Properties"
 msgstr "คุณสมบัติของกราฟซีพียู"
 
-#: ../panel-plugin/properties.c:98
+#: ../panel-plugin/properties.c:149
 msgid "Use non-linear time-scale"
 msgstr "ใช้มาตราส่วนเวลาแบบไม่เชิงเส้น"
 
-#: ../panel-plugin/properties.c:99
+#: ../panel-plugin/properties.c:150
 msgid "Show frame"
 msgstr "แสดงเส้นกรอบ"
 
-#: ../panel-plugin/properties.c:100
+#: ../panel-plugin/properties.c:151
 msgid "Show border"
 msgstr "แสดงขอบ"
 
-#: ../panel-plugin/properties.c:101
+#: ../panel-plugin/properties.c:152
 msgid "Show current usage bar"
 msgid_plural "Show current usage bars"
 msgstr[0] "แสดงแถบการใช้งานปัจจุบัน"
 
-#: ../panel-plugin/properties.c:103
+#: ../panel-plugin/properties.c:154
 msgid "Run in terminal"
 msgstr "เรียกทำงานในเทอร์มินัล"
 
-#: ../panel-plugin/properties.c:104
+#: ../panel-plugin/properties.c:155
 msgid "Use startup notification"
 msgstr "ใช้การแจ้งเหตุขณะเริ่ม"
 
-#: ../panel-plugin/properties.c:107
+#: ../panel-plugin/properties.c:158
 msgid "Color 1:"
 msgstr "สี 1:"
 
-#: ../panel-plugin/properties.c:108
+#: ../panel-plugin/properties.c:159
 msgid "Color 2:"
 msgstr "สี 2:"
 
-#: ../panel-plugin/properties.c:109
+#: ../panel-plugin/properties.c:160
 msgid "Color 3:"
 msgstr "สี 3:"
 
-#: ../panel-plugin/properties.c:110
+#: ../panel-plugin/properties.c:161
 msgid "Background:"
 msgstr "พื้นหลัง:"
 
-#: ../panel-plugin/properties.c:114
+#: ../panel-plugin/properties.c:165
 msgid "Bars color:"
 msgstr "สีแถบ:"
 
-#: ../panel-plugin/properties.c:119
+#: ../panel-plugin/properties.c:170
 msgid "Appearance"
 msgstr "รูปลักษณ์"
 
-#: ../panel-plugin/properties.c:121
+#: ../panel-plugin/properties.c:172
 msgid "Advanced"
 msgstr "ขั้นสูง"
 
-#: ../panel-plugin/properties.c:197
+#: ../panel-plugin/properties.c:258
 msgid "Fastest (~250ms)"
 msgstr "เร็วที่สุด (~250ms)"
 
-#: ../panel-plugin/properties.c:198
+#: ../panel-plugin/properties.c:259
 msgid "Fast (~500ms)"
 msgstr "เร็ว (~500ms)"
 
-#: ../panel-plugin/properties.c:199
+#: ../panel-plugin/properties.c:260
 msgid "Normal (~750ms)"
 msgstr "ปกติ (~750ms)"
 
-#: ../panel-plugin/properties.c:200
+#: ../panel-plugin/properties.c:261
 msgid "Slow (~1s)"
 msgstr "ช้า (~1s)"
 
-#: ../panel-plugin/properties.c:204
+#: ../panel-plugin/properties.c:265
 msgid "Update Interval:"
 msgstr "ช่วงเวลาปรับข้อมูล:"
 
-#: ../panel-plugin/properties.c:212
+#: ../panel-plugin/properties.c:274
 msgid "All"
 msgstr "ทั้งหมด"
 
-#: ../panel-plugin/properties.c:217
+#: ../panel-plugin/properties.c:281
 msgid "Tracked Core:"
 msgstr "แกนที่ติดตาม:"
 
-#: ../panel-plugin/properties.c:228
+#: ../panel-plugin/properties.c:293
 msgid "Width:"
 msgstr "ความกว้าง:"
 
-#: ../panel-plugin/properties.c:230
+#: ../panel-plugin/properties.c:295
 msgid "Height:"
 msgstr "ความสูง:"
 
-#: ../panel-plugin/properties.c:244
+#: ../panel-plugin/properties.c:310
 msgid "Associated command:"
 msgstr 

[Xfce4-commits] [apps/xfce4-dict] branch master updated (2b3a939 -> 2c77c53)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository apps/xfce4-dict.

  from  2b3a939   I18n: Add new translation hy_AM (100%).
   new  2c77c53   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 178 +++
 1 file changed, 89 insertions(+), 89 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-dict] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository apps/xfce4-dict.

commit 2c77c53804657cbc67df39df76f867126499de25
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:31:46 2019 +0200

I18n: Update translation th (100%).

119 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 178 +++
 1 file changed, 89 insertions(+), 89 deletions(-)

diff --git a/po/th.po b/po/th.po
index da3609d..c0ebbcd 100644
--- a/po/th.po
+++ b/po/th.po
@@ -5,13 +5,13 @@
 # Translators:
 # Theppitak Karoonboonyanan , 2014
 # Theppitak Karoonboonyanan , 2015
-# Theppitak Karoonboonyanan , 2017
+# Theppitak Karoonboonyanan , 2017,2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-05-07 00:31+0200\n"
-"PO-Revision-Date: 2017-09-23 19:10+\n"
+"POT-Creation-Date: 2019-06-09 18:31+0200\n"
+"PO-Revision-Date: 2019-07-10 09:46+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai (http://www.transifex.com/xfce/xfce-apps/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -21,7 +21,7 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.h:1
-#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:805 ../lib/prefs.c:266
+#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:783 ../lib/prefs.c:265
 msgid "Dictionary"
 msgstr "พจนานุกรม"
 
@@ -29,17 +29,17 @@ msgstr "พจนานุกรม"
 msgid "A plugin to query different dictionaries."
 msgstr "ปลั๊กอินสำหรับค้นพจนานุกรมต่างๆ"
 
-#: ../panel-plugin/xfce4-dict-plugin.c:263
-#: ../panel-plugin/xfce4-dict-plugin.c:391 ../src/xfce4-dict.c:196
-#: ../lib/spell.c:241 ../lib/gui.c:540
+#: ../panel-plugin/xfce4-dict-plugin.c:269
+#: ../panel-plugin/xfce4-dict-plugin.c:397 ../src/xfce4-dict.c:196
+#: ../lib/spell.c:241 ../lib/gui.c:539
 msgid "Ready"
 msgstr "พร้อม"
 
-#: ../panel-plugin/xfce4-dict-plugin.c:325
+#: ../panel-plugin/xfce4-dict-plugin.c:331
 msgid "Look up a word"
 msgstr "ค้นคำศัพท์"
 
-#: ../panel-plugin/xfce4-dict-plugin.c:364 ../lib/gui.c:836
+#: ../panel-plugin/xfce4-dict-plugin.c:370 ../lib/gui.c:814
 msgid "Search term"
 msgstr "คำที่จะค้น"
 
@@ -88,7 +88,7 @@ msgstr "หากพบปัญหา กรุณารายงานที
 msgid "Dictionary Client"
 msgstr "ลูกข่ายพจนานุกรม"
 
-#: ../src/xfce4-dict.desktop.in.h:3 ../lib/gui.c:1019
+#: ../src/xfce4-dict.desktop.in.h:3 ../lib/gui.c:997
 msgid "A client program to query different dictionaries."
 msgstr "โปรแกรมลูกข่ายสำหรับค้นพจนานุกรมต่างๆ"
 
@@ -137,35 +137,35 @@ msgstr "ข้อมูลเข้าไม่ถูกต้อง"
 msgid "Process failed (%s)"
 msgstr "โพรเซสล้มเหลว (%s)"
 
-#: ../lib/speedreader.c:78
+#: ../lib/speedreader.c:77
 msgid "P_ause"
 msgstr "_พัก"
 
-#: ../lib/speedreader.c:79
+#: ../lib/speedreader.c:78
 msgid "_Resume"
 msgstr "ทำ_ต่อ"
 
-#: ../lib/speedreader.c:254
+#: ../lib/speedreader.c:253
 msgid "S_top"
 msgstr "_หยุด"
 
-#: ../lib/speedreader.c:262
+#: ../lib/speedreader.c:261
 msgid "Running"
 msgstr "กำลังทำงาน"
 
-#: ../lib/speedreader.c:265
+#: ../lib/speedreader.c:264
 msgid "Finished"
 msgstr "จบแล้ว"
 
-#: ../lib/speedreader.c:266
+#: ../lib/speedreader.c:265
 msgid "_Back"
 msgstr "_ถอยกลับ"
 
-#: ../lib/speedreader.c:274
+#: ../lib/speedreader.c:273
 msgid "Speed Reader"
 msgstr "เครื่องช่วยอ่านเร็ว"
 
-#: ../lib/speedreader.c:373
+#: ../lib/speedreader.c:372
 msgid "You must enter a text."
 msgstr "คุณต้องป้อนข้อความด้วย"
 
@@ -190,43 +190,43 @@ msgid ""
 "does this by flashing words at a rapid rate on the screen."
 msgstr "นี่คือโปรแกรมอ่านเร็ว ซึ่งจะช่วยฝึกให้คุณอ่านได้เร็วขึ้น 
โดยแสดงคำในอัตราที่รวดเร็วบนหน้าจอ"
 
-#: ../lib/speedreader.c:612
+#: ../lib/speedreader.c:613
 msgid "_Words per Minute:"
 msgstr "_คำต่อนาที:"
 
-#: ../lib/speedreader.c:619
+#: ../lib/speedreader.c:620
 msgid "_Mark Paragraphs"
 msgstr "แสดงจุดแ_บ่งย่อหน้า"
 
-#: ../lib/speedreader.c:626
+#: ../lib/speedreader.c:627
 msgid "Word _Grouping:"
 msgstr "การจัด_กลุ่มคำ:"
 
-#: ../lib/speedreader.c:643
+#: ../lib/speedreader.c:644
 msgid "_Font Size:"
 msgstr "_ขนาดตัวอักษร:"
 
-#: ../lib/speedreader.c:664
+#: ../lib/speedreader.c:665
 msgid ""
 "Enter some text here you would like to read.\n"
 "\n"
 "Be relaxed and make yourself comfortable, then press Start to begin speed 
reading."
 msgstr "ป้อนข้อความที่คุณต้องการอ่านที่นี่\n\nผ่อนคลายและปล่อยตัวตามสบาย 
แล้วกดปุ่ม \"เริ่ม\" เพื่อเริ่มอ่านอย่างเร็ว"
 
-#: ../lib/speedreader.c:677
+#: ../lib/speedreader.c:678
 msgid "Load the contents of a file"
 msgstr "โหลดเนื้อหาจากแฟ้ม"
 
-#: ../lib/speedreader.c:682
+#: ../lib/speedreader.c:683
 msgid ""
 "Clear the contents of the text field and paste the contents of the clipboard"
 msgstr "ล้างเนื้อหาในช่องข้อความและแปะเนื้อหาจากคลิปบอร์ด"
 
-#: 

[Xfce4-commits] [apps/catfish] branch master updated (f907fb7 -> 8924999)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository apps/catfish.

  from  f907fb7   I18n: Update translation uk (99%).
   new  8924999   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] branch master updated (d1f80e7 -> 332d31c)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/xfce4-panel.

  from  d1f80e7   I18n: Update translation uk (100%).
   new  332d31c   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 272 +++
 1 file changed, 133 insertions(+), 139 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-appfinder] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/xfce4-appfinder.

commit 85bf758fddf3576c36d0bc7ba2d487eba7f5b5dc
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:30:52 2019 +0200

I18n: Update translation th (100%).

81 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/po/th.po b/po/th.po
index 828ddad..0075822 100644
--- a/po/th.po
+++ b/po/th.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-11-25 00:30+0100\n"
-"PO-Revision-Date: 2019-01-03 07:22+\n"
+"POT-Creation-Date: 2019-06-24 00:30+0200\n"
+"PO-Revision-Date: 2019-07-10 08:20+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai 
(http://www.transifex.com/xfce/xfce4-appfinder/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -85,78 +85,78 @@ msgstr "การกระทำที่กำหนดเองจะถูก
 msgid "Are you sure you want to delete pattern \"%s\"?"
 msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบแพตเทิร์น \"%s\"?"
 
-#: ../src/appfinder-window.c:228 ../src/appfinder-preferences.glade.h:10
+#: ../src/appfinder-window.c:226 ../src/appfinder-preferences.glade.h:10
 #: ../data/xfce4-appfinder.desktop.in.h:1
 #: ../data/org.xfce.xfce4-appfinder.appdata.xml.in.h:1
 msgid "Application Finder"
 msgstr "เครื่องมือค้นหาโปรแกรม"
 
-#: ../src/appfinder-window.c:276
+#: ../src/appfinder-window.c:272
 msgid "Toggle view mode"
 msgstr "สลับโหมดการแสดงผล"
 
-#: ../src/appfinder-window.c:355
+#: ../src/appfinder-window.c:343
 msgid "_Preferences"
 msgstr "_ปรับแต่ง"
 
-#: ../src/appfinder-window.c:372
+#: ../src/appfinder-window.c:360
 msgid "Close"
 msgstr "ปิด"
 
-#: ../src/appfinder-window.c:382 ../src/appfinder-window.c:1075
+#: ../src/appfinder-window.c:370 ../src/appfinder-window.c:1082
 msgid "La_unch"
 msgstr "เ_รียกทำงาน"
 
-#: ../src/appfinder-window.c:889
+#: ../src/appfinder-window.c:896
 msgid "Failed to launch desktop item editor"
 msgstr "เรียกทำงานเครื่องมือแก้ไขรายการเดสก์ท็อปไม่สำเร็จ"
 
-#: ../src/appfinder-window.c:915
+#: ../src/appfinder-window.c:922
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
 msgstr 
"นี่จะเป็นการลบแฟ้มเดสก์ท็อปที่กำหนดเองออกจากไดเรกทอรีบ้านของคุณอย่างถาวร"
 
-#: ../src/appfinder-window.c:916
+#: ../src/appfinder-window.c:923
 #, c-format
 msgid "Are you sure you want to revert \"%s\"?"
 msgstr "คุณแน่ใจหรือไม่ว่าต้องการย้อนคืน \"%s\""
 
-#: ../src/appfinder-window.c:926
+#: ../src/appfinder-window.c:933
 msgid "Failed to remove desktop file"
 msgstr "ลบแฟ้มเดสก์ท็อปไม่สำเร็จ"
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:959
+#: ../src/appfinder-window.c:966
 #, c-format
 msgid ""
 "To unhide the item you have to manually remove the desktop file from \"%s\" "
 "or open the file in the same directory and remove the line \"%s\"."
 msgstr "หากต้องการยกเลิกการซ่อนรายการนี้ คุณต้องลบแฟ้มเดสก์ท็อปออกจาก \"%s\" 
เอง หรือเปิดแฟ้มดังกล่าวในไดเรกทอรีเดียวกันแล้วลบบรรทัด \"%s\" ออก"
 
-#: ../src/appfinder-window.c:964 ../src/appfinder-window.c:1112
+#: ../src/appfinder-window.c:971 ../src/appfinder-window.c:1119
 msgid "_Hide"
 msgstr "ซ่อ_น"
 
-#: ../src/appfinder-window.c:965
+#: ../src/appfinder-window.c:972
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
 msgstr "คุณแน่ใจหรือไม่ว่าต้องการซ่อน \"%s\"?"
 
-#: ../src/appfinder-window.c:1059
+#: ../src/appfinder-window.c:1066
 msgid "Remove From Bookmarks"
 msgstr "ลบที่คั่นหน้า"
 
-#: ../src/appfinder-window.c:1059
+#: ../src/appfinder-window.c:1066
 msgid "Add to Bookmarks"
 msgstr "เพิ่มที่คั่นหน้า"
 
-#: ../src/appfinder-window.c:1088
+#: ../src/appfinder-window.c:1095
 msgid "_Edit"
 msgstr "แ_ก้ไข"
 
-#: ../src/appfinder-window.c:1105
+#: ../src/appfinder-window.c:1112
 msgid "_Revert"
 msgstr "_คืนกลับ"
 
@@ -356,8 +356,8 @@ msgid "Run Program..."
 msgstr "เรียกโปรแกรม..."
 
 #: ../data/xfce4-run.desktop.in.h:2
-msgid "Run a program"
-msgstr "เรียกโปรแกรม"
+msgid "Enter a command you want to launch"
+msgstr "ป้อนคำสั่งที่คุณต้องการเรียกทำงาน"
 
 #: ../data/org.xfce.xfce4-appfinder.appdata.xml.in.h:2
 msgid "Application to quickly run applications and commands"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/catfish] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository apps/catfish.

commit 8924999ad26643fed3b2ab29d5b3cf00d27586c0
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:31:25 2019 +0200

I18n: Update translation th (100%).

118 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/th.po b/po/th.po
index 4c45ea0..a970f4b 100644
--- a/po/th.po
+++ b/po/th.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-12 13:50+0100\n"
+"POT-Creation-Date: 2019-03-05 20:20-0500\n"
 "PO-Revision-Date: 2018-06-28 22:08+\n"
 "Last-Translator: Theppitak Karoonboonyanan , 2019\n"
 "Language-Team: Thai (https://www.transifex.com/xfce/teams/16840/th/)\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit 332d31c684b30daab974991ad8abedd568e86d09
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:30:59 2019 +0200

I18n: Update translation th (100%).

410 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 272 +++
 1 file changed, 133 insertions(+), 139 deletions(-)

diff --git a/po/th.po b/po/th.po
index 30bac16..5459e16 100644
--- a/po/th.po
+++ b/po/th.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-12-03 22:34+0100\n"
-"PO-Revision-Date: 2019-01-03 05:21+\n"
+"POT-Creation-Date: 2019-07-04 00:30+0200\n"
+"PO-Revision-Date: 2019-07-10 05:34+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai 
(http://www.transifex.com/xfce/xfce4-panel/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -30,8 +30,7 @@ msgid ""
 "file"
 msgstr "เพิ่มปุ่มเรียกปุ่มใหม่ลงในพาเนลโดยใช้ข้อมูลจากแฟ้มเดสก์ท็อปนี้"
 
-#: ../panel-preferences.desktop.in.h:1
-#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2692
+#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2699
 msgid "Panel"
 msgstr "พาเนล"
 
@@ -40,64 +39,63 @@ msgid "Customize the panel"
 msgstr "ปรับแต่งพาเนล"
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:1079
+#: ../libxfce4panel/xfce-panel-plugin.c:1081
 #: ../panel/panel-preferences-dialog.c:1308
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "แน่ใจหรือไม่ว่าคุณต้องการลบ \"%s\"?"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1084
+#: ../libxfce4panel/xfce-panel-plugin.c:1086
 #: ../panel/panel-preferences-dialog.c:1311
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "ถ้าคุณลบรายการนี้ออกจากพาเนล ก็จะเป็นการลบอย่างถาวร"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1085 ../panel/panel-dialogs.c:163
+#: ../libxfce4panel/xfce-panel-plugin.c:1087 ../panel/panel-dialogs.c:163
 #: ../panel/panel-preferences-dialog.c:1313
-msgid "Cancel"
-msgstr "ยกเลิก"
+#: ../plugins/applicationsmenu/applicationsmenu.c:593
+#: ../plugins/directorymenu/directorymenu.c:394
+msgid "_Cancel"
+msgstr "_ยกเลิก"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1086
-#: ../panel/panel-plugin-external.c:439
+#: ../libxfce4panel/xfce-panel-plugin.c:1088
+#: ../libxfce4panel/xfce-panel-plugin.c:1283
+#: ../panel/panel-plugin-external.c:441
 #: ../panel/panel-preferences-dialog.c:956
 #: ../panel/panel-preferences-dialog.c:1314
 #: ../plugins/launcher/launcher-dialog.c:855
-msgid "Remove"
-msgstr "เอาออก"
+msgid "_Remove"
+msgstr "เอา_ออก"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1227
+#: ../libxfce4panel/xfce-panel-plugin.c:1229
 msgid "_Properties"
 msgstr "คุณ_สมบัติ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1242 ../panel/panel-window.c:2780
+#: ../libxfce4panel/xfce-panel-plugin.c:1244 ../panel/panel-window.c:2787
 msgid "_About"
 msgstr "เ_กี่ยวกับ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1257
+#: ../libxfce4panel/xfce-panel-plugin.c:1259
 msgid "_Move"
 msgstr "_ย้าย"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1281
-msgid "_Remove"
-msgstr "เอา_ออก"
-
-#: ../libxfce4panel/xfce-panel-plugin.c:1302
+#: ../libxfce4panel/xfce-panel-plugin.c:1304
 msgid "Pane_l"
 msgstr "_พาเนล"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1311 ../panel/panel-window.c:2705
+#: ../libxfce4panel/xfce-panel-plugin.c:1313 ../panel/panel-window.c:2712
 msgid "Add _New Items..."
 msgstr "เพิ่มรายการใ_หม่..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1326 ../panel/panel-window.c:2720
+#: ../libxfce4panel/xfce-panel-plugin.c:1328 ../panel/panel-window.c:2727
 msgid "Panel Pr_eferences..."
 msgstr "_ปรับแต่งพาเนล..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1347 ../panel/panel-window.c:2752
+#: ../libxfce4panel/xfce-panel-plugin.c:1349 ../panel/panel-window.c:2759
 msgid "Log _Out"
 msgstr "_ออกจากระบบ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1367 ../panel/panel-item-dialog.c:208
-#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2771
+#: ../libxfce4panel/xfce-panel-plugin.c:1369 ../panel/panel-item-dialog.c:208
+#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2778
 #: ../plugins/actions/actions-dialog.glade.h:4
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:2
 #: ../plugins/clock/clock-dialog.glade.h:8
@@ -110,7 +108,7 @@ msgstr "_ออกจากระบบ"
 msgid "_Help"
 msgstr "_วิธีใช้"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1382
+#: ../libxfce4panel/xfce-panel-plugin.c:1384
 msgid "About"
 msgstr "เกี่ยวกับ"
 
@@ -163,72 +161,72 @@ msgid "Name %s lost on the message dbus, exiting."
 msgstr 

[Xfce4-commits] [xfce/xfce4-appfinder] branch master updated (e8fd51f -> 85bf758)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/xfce4-appfinder.

  from  e8fd51f   I18n: Update translation uk (100%).
   new  85bf758   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] branch master updated (95985bb -> 4d6b472)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/thunar.

  from  95985bb   Fix XML declaratation in uca.xml (Bug #13623)
   new  4d6b472   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 284 ++-
 1 file changed, 135 insertions(+), 149 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
xfce-4.14
in repository xfce/thunar.

commit e2ef5e5dcd95d92faea6eb6c548e20b1d0819813
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:30:41 2019 +0200

I18n: Update translation th (100%).

761 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 253 +++
 1 file changed, 123 insertions(+), 130 deletions(-)

diff --git a/po/th.po b/po/th.po
index 21583fe..91330a5 100644
--- a/po/th.po
+++ b/po/th.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-03-19 00:30+0100\n"
+"POT-Creation-Date: 2019-06-09 18:30+0200\n"
 "PO-Revision-Date: 2018-08-19 09:02+\n"
 "Last-Translator: Theppitak Karoonboonyanan , 2019\n"
 "Language-Team: Thai (https://www.transifex.com/xfce/teams/16840/th/)\n"
@@ -43,55 +43,55 @@ msgstr ""
 msgid "Thunar"
 msgstr "Thunar"
 
-#: ../thunar/thunar-abstract-icon-view.c:117
+#: ../thunar/thunar-abstract-icon-view.c:113
 msgid "Arran_ge Items"
 msgstr "จัดเ_รียงรายการ"
 
-#: ../thunar/thunar-abstract-icon-view.c:122
+#: ../thunar/thunar-abstract-icon-view.c:118
 msgid "Sort By _Name"
 msgstr "เรียงตาม_ชื่อ"
 
-#: ../thunar/thunar-abstract-icon-view.c:122
+#: ../thunar/thunar-abstract-icon-view.c:118
 msgid "Keep items sorted by their name"
 msgstr "เรียงลำดับรายการตามชื่อ"
 
-#: ../thunar/thunar-abstract-icon-view.c:123
+#: ../thunar/thunar-abstract-icon-view.c:119
 msgid "Sort By _Size"
 msgstr "เรียงตาม_ขนาด"
 
-#: ../thunar/thunar-abstract-icon-view.c:123
+#: ../thunar/thunar-abstract-icon-view.c:119
 msgid "Keep items sorted by their size"
 msgstr "เรียงลำดับรายการตามขนาด"
 
-#: ../thunar/thunar-abstract-icon-view.c:124
+#: ../thunar/thunar-abstract-icon-view.c:120
 msgid "Sort By _Type"
 msgstr "เรียงตามช_นิด"
 
-#: ../thunar/thunar-abstract-icon-view.c:124
+#: ../thunar/thunar-abstract-icon-view.c:120
 msgid "Keep items sorted by their type"
 msgstr "เรียงลำดับรายการตามชนิด"
 
-#: ../thunar/thunar-abstract-icon-view.c:125
+#: ../thunar/thunar-abstract-icon-view.c:121
 msgid "Sort By Modification _Date"
 msgstr "เรียงตามเวลาเ_ปลี่ยนแปลง"
 
-#: ../thunar/thunar-abstract-icon-view.c:125
+#: ../thunar/thunar-abstract-icon-view.c:121
 msgid "Keep items sorted by their modification date"
 msgstr "เรียงลำดับรายการตามเวลาที่เปลี่ยนแปลง"
 
-#: ../thunar/thunar-abstract-icon-view.c:130
+#: ../thunar/thunar-abstract-icon-view.c:126
 msgid "_Ascending"
 msgstr "_ก่อนไปหลัง"
 
-#: ../thunar/thunar-abstract-icon-view.c:130
+#: ../thunar/thunar-abstract-icon-view.c:126
 msgid "Sort items in ascending order"
 msgstr "เรียงลำดับรายการจากก่อนไปหลัง"
 
-#: ../thunar/thunar-abstract-icon-view.c:131
+#: ../thunar/thunar-abstract-icon-view.c:127
 msgid "_Descending"
 msgstr "_หลังมาหน้า"
 
-#: ../thunar/thunar-abstract-icon-view.c:131
+#: ../thunar/thunar-abstract-icon-view.c:127
 msgid "Sort items in descending order"
 msgstr "เรียงลำดับรายการจากหลังมาหน้า"
 
@@ -162,20 +162,20 @@ msgstr "เปิด \"%s\" ไม่สำเร็จ: %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1691
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2834 ../thunar/thunar-tree-view.c:1897
+#: ../thunar/thunar-standard-view.c:2837 ../thunar/thunar-tree-view.c:1899
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "เปลี่ยนชื่อ \"%s\" ไม่สำเร็จ"
 
 #: ../thunar/thunar-application.c:1793
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2359 ../thunar/thunar-tree-view.c:1759
+#: ../thunar/thunar-standard-view.c:2362 ../thunar/thunar-tree-view.c:1776
 msgid "New Folder"
 msgstr "โฟลเดอร์ใหม่"
 
 #: ../thunar/thunar-application.c:1794
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2360 ../thunar/thunar-tree-view.c:1760
+#: ../thunar/thunar-standard-view.c:2363 ../thunar/thunar-tree-view.c:1777
 msgid "Create New Folder"
 msgstr "สร้างโฟลเดอร์ใหม่"
 
@@ -188,7 +188,7 @@ msgid "Create New File"
 msgstr "สร้างแฟ้มใหม่"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1856 ../thunar/thunar-standard-view.c:2406
+#: ../thunar/thunar-application.c:1856 ../thunar/thunar-standard-view.c:2409
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "สร้างเอกสารจากเทมเพลต \"%s\""
@@ -250,7 +250,7 @@ msgstr[0] ""
 #: ../thunar/thunar-renamer-dialog.c:1053
 #: ../thunar/thunar-renamer-progress.c:198
 #: ../thunar/thunar-renamer-progress.c:208
-#: ../thunar/thunar-standard-view.c:2665
+#: ../thunar/thunar-standard-view.c:2668
 #: ../plugins/thunar-sendto-email/main.c:198
 #: ../plugins/thunar-sendto-email/main.c:217
 #: 

[Xfce4-commits] [xfce/thunar] branch xfce-4.14 updated (c480ee7 -> e2ef5e5)

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
xfce-4.14
in repository xfce/thunar.

  from  c480ee7   Fix XML declaratation in uca.xml (Bug #13623)
   new  e2ef5e5   I18n: Update translation th (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/th.po | 253 +++
 1 file changed, 123 insertions(+), 130 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation th (100%).

2019-07-10 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/thunar.

commit 4d6b472f7ad007bd1e53739009da2834945eb844
Author: Theppitak Karoonboonyanan 
Date:   Wed Jul 10 12:30:13 2019 +0200

I18n: Update translation th (100%).

761 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/th.po | 284 ++-
 1 file changed, 135 insertions(+), 149 deletions(-)

diff --git a/po/th.po b/po/th.po
index e50ca8b..d3a1f6f 100644
--- a/po/th.po
+++ b/po/th.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-05-23 12:30+0200\n"
-"PO-Revision-Date: 2019-05-24 09:04+\n"
+"POT-Creation-Date: 2019-06-25 00:30+0200\n"
+"PO-Revision-Date: 2019-07-10 08:08+\n"
 "Last-Translator: Theppitak Karoonboonyanan \n"
 "Language-Team: Thai (http://www.transifex.com/xfce/thunar/language/th/)\n"
 "MIME-Version: 1.0\n"
@@ -139,10 +139,10 @@ msgstr "เรียกทำงานการกระทำไม่สำเ
 
 #. tell the user that we were unable to launch the file specified
 #: ../thunar/thunar-application.c:1500 ../thunar/thunar-application.c:1632
-#: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
+#: ../thunar/thunar-launcher.c:1227 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
-#: ../thunar/thunar-shortcuts-view.c:1680
-#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2360
+#: ../thunar/thunar-shortcuts-view.c:1711
+#: ../thunar/thunar-shortcuts-view.c:1739 ../thunar/thunar-window.c:2360
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "เปิด \"%s\" ไม่สำเร็จ"
@@ -155,20 +155,20 @@ msgstr "เปิด \"%s\" ไม่สำเร็จ: %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1691
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2867 ../thunar/thunar-tree-view.c:1895
+#: ../thunar/thunar-standard-view.c:2867 ../thunar/thunar-tree-view.c:1899
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "เปลี่ยนชื่อ \"%s\" ไม่สำเร็จ"
 
 #: ../thunar/thunar-application.c:1793
 #: ../thunar/thunar-location-buttons.c:1347
-#: ../thunar/thunar-standard-view.c:2392 ../thunar/thunar-tree-view.c:1772
+#: ../thunar/thunar-standard-view.c:2392 ../thunar/thunar-tree-view.c:1776
 msgid "New Folder"
 msgstr "โฟลเดอร์ใหม่"
 
 #: ../thunar/thunar-application.c:1794
 #: ../thunar/thunar-location-buttons.c:1348
-#: ../thunar/thunar-standard-view.c:2393 ../thunar/thunar-tree-view.c:1773
+#: ../thunar/thunar-standard-view.c:2393 ../thunar/thunar-tree-view.c:1777
 msgid "Create New Folder"
 msgstr "สร้างโฟลเดอร์ใหม่"
 
@@ -231,9 +231,9 @@ msgstr[0] "คุณแน่ใจหรือไม่ว่าต้องก
 #: ../thunar/thunar-chooser-dialog.c:753 ../thunar/thunar-create-dialog.c:141
 #: ../thunar/thunar-dialogs.c:105 ../thunar/thunar-dialogs.c:476
 #: ../thunar/thunar-dialogs.c:549 ../thunar/thunar-dialogs.c:797
-#: ../thunar/thunar-dnd.c:169 ../thunar/thunar-launcher.c:725
-#: ../thunar/thunar-permissions-chooser.c:524
-#: ../thunar/thunar-permissions-chooser.c:1137
+#: ../thunar/thunar-dnd.c:169 ../thunar/thunar-launcher.c:736
+#: ../thunar/thunar-permissions-chooser.c:535
+#: ../thunar/thunar-permissions-chooser.c:1148
 #: ../thunar/thunar-properties-dialog.c:819
 #: ../thunar/thunar-renamer-dialog.c:354
 #: ../thunar/thunar-renamer-dialog.c:1053
@@ -251,7 +251,7 @@ msgid "_Cancel"
 msgstr "_ยกเลิก"
 
 #: ../thunar/thunar-application.c:2158 ../thunar/thunar-standard-view.c:409
-#: ../thunar/thunar-tree-view.c:1498
+#: ../thunar/thunar-tree-view.c:1502
 #: ../plugins/thunar-uca/thunar-uca-chooser.c:372
 msgid "_Delete"
 msgstr "_ลบ"
@@ -283,7 +283,7 @@ msgstr "จะลบแฟ้มและโฟลเดอร์ทั้งห
 #. append the "Empty Trash" menu action
 #. prepare the menu item
 #: ../thunar/thunar-application.c:2337 ../thunar/thunar-location-buttons.c:188
-#: ../thunar/thunar-shortcuts-view.c:1226 ../thunar/thunar-tree-view.c:1366
+#: ../thunar/thunar-shortcuts-view.c:1231 ../thunar/thunar-tree-view.c:1370
 #: ../thunar/thunar-window.c:355 ../plugins/thunar-tpa/thunar-tpa.c:175
 msgid "_Empty Trash"
 msgstr "เ_ทถังขยะ"
@@ -333,7 +333,7 @@ msgstr "ไม่ได้เลือกโปรแกรมใด"
 msgid "Other Application..."
 msgstr "โปรแกรมอื่น..."
 
-#: ../thunar/thunar-chooser-dialog.c:186 ../thunar/thunar-launcher.c:180
+#: ../thunar/thunar-chooser-dialog.c:186 ../thunar/thunar-launcher.c:183
 msgid "Open With"
 msgstr "เปิดด้วย"
 
@@ -433,10 +433,10 @@ msgstr "เลือกโปรแกรม"
 #. change the accept button label text
 #. Prepare "Open" label and icon
 #: ../thunar/thunar-chooser-dialog.c:754
-#: ../thunar/thunar-chooser-dialog.c:1155 ../thunar/thunar-launcher.c:176
-#: ../thunar/thunar-launcher.c:811 ../thunar/thunar-location-buttons.c:184
+#: ../thunar/thunar-chooser-dialog.c:1155