[Xfce4-commits] [apps/xfce4-notifyd] 01/01: Set a maximum size for the notification bubble (Bug #12674)

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

ochosi pushed a commit to branch master
in repository apps/xfce4-notifyd.

commit 25f70e7d607ec745276f7504eafde164e3a28377
Author: Simon Steinbeiss 
Date:   Sun Jul 3 23:39:32 2016 +0200

Set a maximum size for the notification bubble (Bug #12674)

This approach may not work well with HiDPI displays as it assumes that
a character including padding takes up about 10px in width.
---
 xfce4-notifyd/xfce-notify-window.c | 8 
 1 file changed, 8 insertions(+)

diff --git a/xfce4-notifyd/xfce-notify-window.c 
b/xfce4-notifyd/xfce-notify-window.c
index 5f7feb3..a1470f9 100644
--- a/xfce4-notifyd/xfce-notify-window.c
+++ b/xfce4-notifyd/xfce-notify-window.c
@@ -171,6 +171,7 @@ xfce_notify_window_init(XfceNotifyWindow *window)
 {
 GdkScreen *screen;
 GtkWidget *tophbox, *vbox;
+gint screen_width;
 gdouble padding = DEFAULT_PADDING;
 
 window->expire_timeout = DEFAULT_EXPIRE_TIMEOUT;
@@ -202,6 +203,11 @@ xfce_notify_window_init(XfceNotifyWindow *window)
 gtk_widget_set_visual (GTK_WIDGET(window), visual);
 }
 
+/* Use the screen width to get a maximum width for the notification bubble.
+   This assumes that a character is 10px wide and we want a third of the
+   screen as maximum width. */
+screen_width = gdk_screen_get_width (screen) / 30;
+
 gtk_widget_style_get(GTK_WIDGET(window),
  "padding", ,
  NULL);
@@ -228,12 +234,14 @@ xfce_notify_window_init(XfceNotifyWindow *window)
 
 window->summary = gtk_label_new(NULL);
 gtk_widget_set_name (window->summary, "summary");
+gtk_label_set_max_width_chars (GTK_LABEL(window->summary), screen_width);
 gtk_label_set_line_wrap(GTK_LABEL(window->summary), TRUE);
 gtk_label_set_xalign (GTK_LABEL(window->summary), 0);
 gtk_box_pack_start(GTK_BOX(vbox), window->summary, FALSE, FALSE, 0);
 
 window->body = gtk_label_new(NULL);
 gtk_widget_set_name (window->body, "body");
+gtk_label_set_max_width_chars (GTK_LABEL(window->body), screen_width);
 gtk_label_set_line_wrap(GTK_LABEL(window->body), TRUE);
 gtk_label_set_xalign (GTK_LABEL(window->body), 0);
 gtk_box_pack_start(GTK_BOX(vbox), window->body, TRUE, TRUE, 0);

-- 
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-notifyd] branch master updated (ca47d12 -> 25f70e7)

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

ochosi pushed a change to branch master
in repository apps/xfce4-notifyd.

  from  ca47d12   Fix custom icons in notifications (Bug #12675)
   new  25f70e7   Set a maximum size for the notification bubble (Bug 
#12674)

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:
 xfce4-notifyd/xfce-notify-window.c | 8 
 1 file changed, 8 insertions(+)

-- 
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-verve-plugin] branch isaacschemm/gtk3 created (now 3420196)

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

isaacschemm pushed a change to branch isaacschemm/gtk3
in repository panel-plugins/xfce4-verve-plugin.

at  3420196   Port to GTK3

This branch includes the following new commits:

   new  2c3105f   Remove verve-focus and libdbus-glib-1 support in 
preparation for move to GTK3
   new  3420196   Port to GTK3

The 2 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.


-- 
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-verve-plugin] 01/02: Remove verve-focus and libdbus-glib-1 support in preparation for move to GTK3

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

isaacschemm pushed a commit to branch isaacschemm/gtk3
in repository panel-plugins/xfce4-verve-plugin.

commit 2c3105f08c3e4daeff3376e4d2ea316f20effef2
Author: Isaac Schemm 
Date:   Sun Jul 3 16:11:17 2016 -0500

Remove verve-focus and libdbus-glib-1 support in preparation for move to 
GTK3
---
 Makefile.am  |   1 -
 README   |   1 -
 configure.ac.in  |  15 ---
 panel-plugin/Makefile.am |  25 
 scripts/Makefile.am  |  20 -
 scripts/verve-focus.c| 103 ---
 6 files changed, 165 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index e588a53..a6c90af 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2,7 +2,6 @@
 
 SUBDIRS =  \
panel-plugin\
-   scripts \
po
 
 AUTOMAKE_OPTIONS = \
diff --git a/README b/README
index f7e03d0..f0dc339 100644
--- a/README
+++ b/README
@@ -9,7 +9,6 @@ Required packages:
   * libpcre
 
 Optional packages:
-  * dbus (for the verve-focus command)
   * wordexp (for tilde and variable expansion in directory paths)
 
 Build tools required:
diff --git a/configure.ac.in b/configure.ac.in
index af7f69d..f70e2ce 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -60,20 +60,6 @@ XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
 XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.6.4])
 XDT_CHECK_PACKAGE([LIBPCRE], [libpcre], [5.0])
 
-dnl *
-dnl ** Optional support for D-BUS ***
-dnl *
-XDT_CHECK_OPTIONAL_PACKAGE([DBUS], [dbus-glib-1],
-   [0.34], [dbus], [D-BUS support])
-
-dnl ***
-dnl ** Determine if D-BUS version is >= 0.60 in order to **
-dnl ** set correct flags when calling D-BUS functions**
-dnl ***
-if $PKG_CONFIG --atleast-version=0.60 dbus-glib-1 >/dev/null 2>&1; then
-  AC_DEFINE([HAVE_DBUS_NEW_FLAGS], [1], [Define if D-BUS version >= 0.60])
-fi
-
 dnl ***
 dnl ** Determine if wordexp is available for expanding   **
 dnl ** pathnames entered into the verve input box**
@@ -88,6 +74,5 @@ XDT_FEATURE_DEBUG()
 AC_OUTPUT([
 Makefile
 panel-plugin/Makefile
-scripts/Makefile
 po/Makefile.in
 ])
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 2ce10ec..55067ef 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -37,26 +37,6 @@ libverve_la_LDFLAGS = \
-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
$(PLATFORM_LDFLAGS)
 
-if HAVE_DBUS
-libverve_la_SOURCES += 
\
-   verve-dbus-service-infos.h  \
-   verve-dbus-service.h\
-   verve-dbus-service.c
-
-libverve_la_CFLAGS +=  \
-   -DDBUS_API_SUBJECT_TO_CHANGE\
-   $(DBUS_CFLAGS)
-
-libverve_la_LIBADD +=  \
-   $(DBUS_LIBS)
-
-verve-dbus-service-infos.h: Makefile $(srcdir)/verve-dbus-service-infos.xml 
-   dbus-binding-tool --prefix=verve_dbus_service --mode=glib-server 
$(srcdir)/verve-dbus-service-infos.xml > verve-dbus-service-infos.h
-
-BUILT_SOURCES =\
-   verve-dbus-service-infos.h
-endif
-
 # .desktop file
 #
 # We need to let intltool merge the translated fields, so we add a
@@ -73,9 +53,4 @@ EXTRA_DIST =  
\
  
 DISTCLEANFILES = $(desktop_DATA)
 
-if HAVE_DBUS
-DISTCLEANFILES +=  \
-   verve-dbus-service-infos.h
-endif
-
 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
diff --git a/scripts/Makefile.am b/scripts/Makefile.am
deleted file mode 100644
index 0be767b..000
--- a/scripts/Makefile.am
+++ /dev/null
@@ -1,20 +0,0 @@
-if HAVE_DBUS
-
-bin_PROGRAMS = verve-focus
-
-verve_focus_SOURCES =  \
-   verve-focus.c
-
-verve_focus_CFLAGS =   \
-   -DDBUS_API_SUBJECT_TO_CHANGE\
-   -DPACKAGE_LOCALE_DIR=\"$(localedir)\"   \
-   @DBUS_CFLAGS@   \
-   @LIBXFCE4UTIL_CFLAGS@   
-
-verve_focus_LDADD =

[Xfce4-commits] [panel-plugins/xfce4-verve-plugin] 02/02: Port to GTK3

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

isaacschemm pushed a commit to branch isaacschemm/gtk3
in repository panel-plugins/xfce4-verve-plugin.

commit 342019633743ccd22d73952bfd39e07b9090f34e
Author: Isaac Schemm 
Date:   Sun Jul 3 16:28:06 2016 -0500

Port to GTK3
---
 configure.ac.in|  6 ++
 panel-plugin/Makefile.am   |  4 
 panel-plugin/verve-plugin.c| 20 ++--
 panel-plugin/xfce4-verve-plugin.desktop.in |  1 +
 po/POTFILES.in |  1 -
 5 files changed, 13 insertions(+), 19 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index f70e2ce..a99076c 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -53,10 +53,8 @@ XDT_I18N([@LINGUAS@])
 dnl ***
 dnl *** Check for required packages ***
 dnl ***
-XDT_CHECK_PACKAGE([LIBEXO], [exo-1], [0.5.0])
-XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.8.0])
-XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.8.0])
-XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
+XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-2.0], [4.12.0])
+XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-2], [4.12.0])
 XDT_CHECK_PACKAGE([GTHREAD], [gthread-2.0], [2.6.4])
 XDT_CHECK_PACKAGE([LIBPCRE], [libpcre], [5.0])
 
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am
index 55067ef..cbc5bd5 100644
--- a/panel-plugin/Makefile.am
+++ b/panel-plugin/Makefile.am
@@ -15,18 +15,14 @@ libverve_la_CFLAGS =
\
-I$(top_builddir)   \
-I$(top_srcdir) \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\"   \
-   @LIBEXO_CFLAGS@ \
@LIBXFCE4PANEL_CFLAGS@  \
@LIBXFCE4UI_CFLAGS@ \
-   @LIBXFCE4UTIL_CFLAGS@   \
@LIBPCRE_CFLAGS@\
@GTHREAD_CFLAGS@
 
 libverve_la_LIBADD =   \
-   @LIBEXO_LIBS@   \
@LIBXFCE4PANEL_LIBS@\
@LIBXFCE4UI_LIBS@   \
-   @LIBXFCE4UTIL_LIBS@ \
@LIBPCRE_LIBS@  \
@GTHREAD_LIBS@
 
diff --git a/panel-plugin/verve-plugin.c b/panel-plugin/verve-plugin.c
index c6447bf..90a829f 100644
--- a/panel-plugin/verve-plugin.c
+++ b/panel-plugin/verve-plugin.c
@@ -211,7 +211,7 @@ verve_plugin_buttonpress_cb (GtkWidget *entry,
 verve_plugin_focus_timeout_reset (verve);
 
   /* Grab entry focus if possible */
-  if (event->button != 3 && toplevel && toplevel->window && 
!GTK_WIDGET_HAS_FOCUS(entry))
+  if (event->button != 3 && toplevel && gtk_widget_get_window(toplevel) && 
!gtk_widget_has_focus(entry))
 xfce_panel_plugin_focus_widget (verve->plugin, entry);
 
   return FALSE;
@@ -276,12 +276,12 @@ verve_plugin_keypress_cb (GtkWidget   *entry,
   switch (event->keyval)
 {
   /* Reset entry value when ESC is pressed */
-  case GDK_Escape:
+  case GDK_KEY_Escape:
  gtk_entry_set_text (GTK_ENTRY (entry), "");
  return TRUE;
 
   /* Browse backwards through the command history */
-  case GDK_Down:
+  case GDK_KEY_Down:
 /* Do nothing if history is empty */
 if (verve_history_is_empty ())
   return TRUE;
@@ -322,7 +322,7 @@ verve_plugin_keypress_cb (GtkWidget   *entry,
 return TRUE;
 
   /* Browse forwards through the command history */
-  case GDK_Up:
+  case GDK_KEY_Up:
 /* Do nothing if the history is empty */
 if (verve_history_is_empty ())
   return TRUE;
@@ -363,8 +363,8 @@ verve_plugin_keypress_cb (GtkWidget   *entry,
 return TRUE;
 
   /* Execute command entered by the user */
-  case GDK_Return:
-  case GDK_KP_Enter:
+  case GDK_KEY_Return:
+  case GDK_KEY_KP_Enter:
 /* Retrieve a copy of the entry text */
 command = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
 
@@ -421,7 +421,7 @@ verve_plugin_keypress_cb (GtkWidget   *entry,
 return TRUE;
 
   /* Cycle through completion results */
-  case GDK_Tab:
+  case GDK_KEY_Tab:
 /* Retrieve a copy of the entry text */
 command = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
 
@@ -1003,7 +1003,7 @@ verve_plugin_properties (XfcePanelPlugin *plugin,
   GtkWidget *label_box;
   GtkWidget 

[Xfce4-commits] [apps/xfce4-notifyd] 02/02: Fix custom icons in notifications (Bug #12675)

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

ochosi pushed a commit to branch master
in repository apps/xfce4-notifyd.

commit ca47d12621562a1ec0b3f9a8f736b5e1ede4a14c
Author: Simon Steinbeiss 
Date:   Sun Jul 3 23:09:17 2016 +0200

Fix custom icons in notifications (Bug #12675)
---
 xfce4-notifyd/xfce-notify-window.c | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/xfce4-notifyd/xfce-notify-window.c 
b/xfce4-notifyd/xfce-notify-window.c
index 4c5df56..5f7feb3 100644
--- a/xfce4-notifyd/xfce-notify-window.c
+++ b/xfce4-notifyd/xfce-notify-window.c
@@ -769,17 +769,18 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window,
 
 g_return_if_fail(XFCE_IS_NOTIFY_WINDOW(window));
 
-if(icon_name && *icon_name) {
+if (icon_name && *icon_name) {
 gint w, h;
 GdkPixbuf *pix;
 
 gtk_icon_size_lookup(GTK_ICON_SIZE_DIALOG, , );
 
-if(g_path_is_absolute(icon_name))
+if (g_path_is_absolute(icon_name)) {
   pix = gdk_pixbuf_new_from_file_at_size(icon_name, w, h, NULL);
-else if(g_str_has_prefix (icon_name, "file://")) {
+}
+else if (g_str_has_prefix (icon_name, "file://")) {
 filename = g_filename_from_uri(icon_name, NULL, NULL);
-if(filename)
+if (filename)
   pix = gdk_pixbuf_new_from_file_at_size(filename, w, h, NULL);
 g_free(filename);
   }
@@ -789,22 +790,21 @@ xfce_notify_window_set_icon_name(XfceNotifyWindow *window,
w,
GTK_ICON_LOOKUP_FORCE_SIZE,
NULL);
-
-if(pix) {
-gtk_image_set_from_pixbuf(GTK_IMAGE(window->icon), pix);
-gtk_widget_show(window->icon_box);
-g_object_unref(G_OBJECT(pix));
-icon_set = TRUE;
-}
+}
+if(pix) {
+gtk_image_set_from_pixbuf(GTK_IMAGE(window->icon), pix);
+gtk_widget_show(window->icon_box);
+g_object_unref(G_OBJECT(pix));
+icon_set = TRUE;
 }
 }
 
-if(!icon_set) {
+if (!icon_set) {
 gtk_image_clear(GTK_IMAGE(window->icon));
 gtk_widget_hide(window->icon_box);
 }
 
-if(gtk_widget_get_realized(GTK_WIDGET(window)))
+if (gtk_widget_get_realized(GTK_WIDGET(window)))
 gtk_widget_queue_draw(GTK_WIDGET(window));
 }
 

-- 
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-notifyd] branch master updated (8e7a792 -> ca47d12)

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

ochosi pushed a change to branch master
in repository apps/xfce4-notifyd.

  from  8e7a792   Fix small error in Smoke theme
   new  4459bc2   Updates for release
   new  ca47d12   Fix custom icons in notifications (Bug #12675)

The 2 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:
 AUTHORS|  3 ++-
 README | 11 +--
 xfce4-notifyd/xfce-notify-window.c | 26 +-
 3 files 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] [apps/xfce4-notifyd] 01/02: Updates for release

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

ochosi pushed a commit to branch master
in repository apps/xfce4-notifyd.

commit 4459bc20a7ff831ad795659c6e2b51dfe3979632
Author: Simon Steinbeiss 
Date:   Sun Jul 3 11:15:07 2016 +0200

Updates for release
---
 AUTHORS |  3 ++-
 README  | 11 +--
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index 560725a..adfea7e 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,3 +1,4 @@
 Brian Tarricone 
 Jérôme Guelfucci 
-Ali Abdallah 
\ No newline at end of file
+Ali Abdallah 
+Simon Steinbeiß 
diff --git a/README b/README
index 2f36ad2..3495db3 100644
--- a/README
+++ b/README
@@ -10,12 +10,11 @@ interface.
 
 Requirements:
 
-* gtk+ 2.14.0
-* dbus 1.0.0
-* dbus-glib 0.72
-* libxfce4util 4.4.0
-* libxfce4ui 4.7.0
-* xfconf 4.6
+* gtk+ 3.14.0
+* glib-2.0 (gdbus) 2.42
+* libxfce4util 4.10.0
+* libxfce4ui 4.12.0
+* xfconf 4.10
 * libnotify 0.7
 
 Additionally, I'd recommend use with a compositing manager running; in that

-- 
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] 01/01: I18n: Update translation ko (100%).

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

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

commit 1a1a86f5d69d5937f05726194e781d0ec7a9969a
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:32:16 2016 +0200

I18n: Update translation ko (100%).

222 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 109 ---
 1 file changed, 55 insertions(+), 54 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index ca27b84..e38b034 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -4,16 +4,17 @@
 # 
 # Translators:
 # Alan Lee , 2013
-# ByungHyun Choi , 2005
+# Allen Choi , 2005
 # Seong-ho Cho , 2013
 # Seong-ho Cho , 2013-2016
 # Sungjin Kang , 2013
+# Sungjin Kang , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-03-03 18:32+0100\n"
-"PO-Revision-Date: 2016-07-02 14:18+\n"
+"PO-Revision-Date: 2016-07-03 13:34+\n"
 "Last-Translator: Seong-ho Cho \n"
 "Language-Team: Korean 
(http://www.transifex.com/xfce/xfdesktop/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -63,52 +64,52 @@ msgstr "%s\n형식: %s\n크기: %s"
 #: ../settings/main.c:716
 #, c-format
 msgid "Wallpaper for Monitor %d (%s)"
-msgstr "%d번 모니터 바탕 화면 (%s)"
+msgstr "%d번 모니터 배경(%s)"
 
 #: ../settings/main.c:719
 #, c-format
 msgid "Wallpaper for Monitor %d"
-msgstr "%d번 모니터 바탕 화면"
+msgstr "%d번 모니터 배경"
 
 #: ../settings/main.c:725
 msgid "Move this dialog to the display you want to edit the settings for."
-msgstr "설정을 편집하려는 화면으로 이 대화상자를 이동하십시오."
+msgstr "설정을 편집하려는 화면으로 이 대화 상자를 이동하십시오."
 
 #: ../settings/main.c:732
 #, c-format
 msgid "Wallpaper for %s on Monitor %d (%s)"
-msgstr "화면 %2$d의 %1$s에 대한 배경 화면 (%3$s)"
+msgstr "화면 %2$d의 %1$s 배경(%3$s)"
 
 #: ../settings/main.c:736
 #, c-format
 msgid "Wallpaper for %s on Monitor %d"
-msgstr "모니터 %2$d의 %1$s에 대한 배경 화면"
+msgstr "모니터 %2$d의 %1$s 배경"
 
 #: ../settings/main.c:743
 msgid ""
 "Move this dialog to the display and workspace you want to edit the settings "
 "for."
-msgstr "설정을 편집하려는 화면과 작업 공간으로 이 대화상자를 이동하십시오."
+msgstr "설정을 편집하려는 화면과 작업 공간으로 이 대화 상자를 이동하십시오."
 
 #. Single monitor and single workspace
 #: ../settings/main.c:751
 #, c-format
 msgid "Wallpaper for my desktop"
-msgstr "내 데스크톱 바탕 화면"
+msgstr "내 데스크톱 배경"
 
 #. Single monitor and per workspace wallpaper
 #: ../settings/main.c:757
 #, c-format
 msgid "Wallpaper for %s"
-msgstr "%s 바탕 화면"
+msgstr "%s 배경"
 
 #: ../settings/main.c:762
 msgid "Move this dialog to the workspace you want to edit the settings for."
-msgstr "설정을 편집하려는 작업 공간으로 이 대화상자를 이동하십시오."
+msgstr "설정을 편집하려는 작업 공간으로 이 대화 상자를 이동하십시오."
 
 #: ../settings/main.c:1178
 msgid "Image selection is unavailable while the image style is set to None."
-msgstr "그림 방식을 없음으로 설정하였기 때문에 그림 선택을 사용할 수 없습니다."
+msgstr "그림 표시 방식을 없음으로 선택하여 그림을 선택할 수 없습니다."
 
 #: ../settings/main.c:1528
 msgid "Spanning screens"
@@ -132,12 +133,12 @@ msgstr "버전 정보"
 
 #: ../settings/main.c:2021 ../src/xfdesktop-application.c:844
 msgid "Enable debug messages"
-msgstr "디버그 메시지 활성화"
+msgstr "디버깅 메시지 활성화"
 
 #: ../settings/main.c:2049
 #, c-format
 msgid "Type '%s --help' for usage."
-msgstr "사용법을 보려면 '%s --help'를 입력합니다."
+msgstr "사용법을 보려면 '%s --help'를 입력하십시오."
 
 #: ../settings/main.c:2061
 msgid "The Xfce development team. All rights reserved."
@@ -187,7 +188,7 @@ msgstr "폴더(_F):"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 msgid "Choose the folder to select wallpapers from."
-msgstr "배경 화면을 선택할 폴더를 선택합니다."
+msgstr "배경 폴더를 선택합니다."
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "St_yle:"
@@ -236,7 +237,7 @@ msgstr "배경 그림 뒤에 채울 색의 형식을 지정합니다."
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient."
-msgstr "그래디언트의 \"왼쪽\" 또는 \"위\" 방향의 색을 정합니다."
+msgstr "그레디언트의 \"왼쪽\" 또는 \"위\" 방향의 색을 정합니다."
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
@@ -244,7 +245,7 @@ msgstr "첫번째 색 선택"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient."
-msgstr "그래디언트의 \"오른쪽\" 또는 \"아래\" 방향의 색을 정합니다."
+msgstr "그레디언트의 \"오른쪽\" 또는 \"아래\" 방향의 색을 정합니다."
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
 msgid "Select Second Color"
@@ -261,7 +262,7 @@ msgstr "배경 바꾸기(_B)"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
 msgid ""
 "Automatically select a different background from the current directory."
-msgstr "현재 디렉터리에서 각기 다른 배경을 자동으로 선택합니다."
+msgstr "현재 디렉터리에서 각각의 다른 배경을 자동으로 선택합니다."
 
 #: 

[Xfce4-commits] [xfce/xfdesktop] branch master updated (fd2b14c -> 1a1a86f)

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

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

  from  fd2b14c   I18n: Update translation ko (100%).
   new  1a1a86f   I18n: Update translation ko (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/ko.po | 109 ---
 1 file changed, 55 insertions(+), 54 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-genmon-plugin] branch master updated (b3490f6 -> 42244da)

2016-07-03 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-genmon-plugin.

  from  b3490f6   Add  functionality (Bug #3437)
   new  42244da   I18n: Update translation ko (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/ko.po | 106 +++
 1 file changed, 39 insertions(+), 67 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-mount-plugin] 01/01: I18n: Update translation ko (100%).

2016-07-03 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-mount-plugin.

commit 4ad4ee85991e09fee713516a478dd36f89883199
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:31:48 2016 +0200

I18n: Update translation ko (100%).

56 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 88 +++-
 1 file changed, 26 insertions(+), 62 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index f580f66..4ab4666 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,22 +1,21 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
 # Seong-ho Cho , 2014,2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-07 22:25+0200\n"
-"PO-Revision-Date: 2016-05-30 18:19+\n"
+"POT-Creation-Date: 2016-06-08 00:31+0200\n"
+"PO-Revision-Date: 2016-07-03 13:47+\n"
 "Last-Translator: Seong-ho Cho \n"
-"Language-Team: Korean (http://www.transifex.com/xfce/xfce-panel-plugins/;
-"language/ko/)\n"
-"Language: ko\n"
+"Language-Team: Korean 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
 #: ../panel-plugin/devices.c:71
@@ -62,7 +61,7 @@ msgstr "사용율:  %d\n"
 #: ../panel-plugin/devices.c:87
 #, c-format
 msgid "file system type:%s\n"
-msgstr "파일 시스템 유형: %s\n"
+msgstr "파일 시스템 형식: %s\n"
 
 #: ../panel-plugin/devices.c:88
 #, c-format
@@ -87,42 +86,34 @@ msgstr "마운트하지 않았습니다\n"
 #: ../panel-plugin/devices.c:293 ../panel-plugin/devices.c:316
 #: ../panel-plugin/devices.c:379 ../panel-plugin/devices.c:390
 #: ../panel-plugin/devices.c:400 ../panel-plugin/devices.c:487
-#, fuzzy
 msgid "Xfce 4 Mount Plugin"
-msgstr "마운트 플러그인"
+msgstr "Xfce 4 마운트 플러그인"
 
 #: ../panel-plugin/devices.c:295
-#, fuzzy
 msgid "Failed to mount device:"
-msgstr "\"%s\" 장치를 마운트 하는데 실패했습니다."
+msgstr "장치 마운트에 실패했습니다:"
 
 #: ../panel-plugin/devices.c:318
-#, fuzzy
 msgid "Error executing on-mount command:"
-msgstr "마운트 명령 \"%s\" 실행 중 오류가 발생했습니다."
+msgstr "마운트 명령 실행 중 오류 발생:"
 
 #: ../panel-plugin/devices.c:381
-#, fuzzy
 msgid "Failed to umount device:"
-msgstr "\"%s\" 장치를 마운트 하는데 실패했습니다."
+msgstr "장치 마운트 해제에 실패했습니다:"
 
 #: ../panel-plugin/devices.c:392
-#, fuzzy
 msgid "The device should be removable safely now:"
-msgstr "\"%s\" 장치를 안전하게 분리할 수 있습니다."
+msgstr "이 장치를 안전하게 제거할 수 있습니다:"
 
 #: ../panel-plugin/devices.c:402
-#, fuzzy
 msgid "An error occurred. The device should not be removed:"
-msgstr "오류가 발생했습니다. 장치 \"%s\"을(를) 제거할 수 없습니다!"
+msgstr "오류가 발생했습니다. 장치를 제거할 수 없습니다:"
 
 #: ../panel-plugin/devices.c:489
 msgid ""
 "Your /etc/fstab could not be read. This will severely degrade the plugin's "
 "abilities."
-msgstr ""
-"/etc/fstab을 읽을 수 없습니다. 플러그인의 대부분의 기능을 못쓰게 될 지도 모릅"
-"니다."
+msgstr "/etc/fstab을 읽을 수 없습니다. 플러그인의 대부분의 기능을 사용할 수 없습니다."
 
 #: ../panel-plugin/mount-plugin.c:177
 msgid " -> "
@@ -153,9 +144,7 @@ msgstr "속성"
 msgid ""
 "This is only useful and recommended if you specify \"sync\" as part of the "
 "\"unmount\" command string."
-msgstr ""
-"\"unmount\" 명령의 일부로 \"sync\"를 추가하면 상당히 유용하기 때문에 추천하고"
-"자 합니다."
+msgstr "\"unmount\" 명령의 일부로 \"sync\"를 추가하면 상당히 유용하기 때문에 추천하고자 합니다."
 
 #: ../panel-plugin/mount-plugin.c:747
 msgid "Show _message after unmount"
@@ -171,7 +160,7 @@ msgstr "아이콘:"
 
 #: ../panel-plugin/mount-plugin.c:769
 msgid "Select an image"
-msgstr "그림 선택"
+msgstr "이미지 선택"
 
 #: ../panel-plugin/mount-plugin.c:776
 msgid "_General"
@@ -180,16 +169,10 @@ msgstr "일반(_G)"
 #: ../panel-plugin/mount-plugin.c:791
 #, c-format
 msgid ""
-"This command will be executed after mounting the device with the mount point "
-"of the device as argument.\n"
+"This command will be executed after mounting the device with the mount point 
of the device as argument.\n"
 "If you are unsure what to insert, try \"exo-open %m\".\n"
 "'%d' can be used to specify the device, '%m' for the mountpoint."
-msgstr ""
-"이 명령어는 인수로서의 장치 마운트 포인트에 장치를 마운트하고 나서 실행합니"
-"다.\n"
-"어떤 명령어를 입력할지 망설이신다면, \"exo-open %m\"을(를) 입력해 보십시오.\n"
-"'%d'은(는) 장치를 지정할 때 사용하고, '%m'은(는) 마운트 지점을 지정할 때 사용"
-"합니다."
+msgstr "이 명령어는 인수로서의 장치 마운트 포인트에 장치를 마운트하고 나서 실행합니다.\n어떤 명령어를 입력할지 망설이신다면, 
\"exo-open %m\"을(를) 입력해 보십시오.\n'%d'은(는) 장치를 지정할 때 사용하고, '%m'은(는) 마운트 지점을 지정할 때 
사용합니다."
 
 #: ../panel-plugin/mount-plugin.c:800
 msgid "_Execute after mounting:"
@@ -199,9 +182,7 @@ msgstr "마운트 후 실행(_E):"
 msgid ""
 "WARNING: These options are for experts only! If you do not know what they "
 "may be good for, keep your hands off!"
-msgstr ""
-"경고: 이 옵션은 고급 사용자를 위한 

[Xfce4-commits] [panel-plugins/xfce4-mount-plugin] branch master updated (3267e95 -> 4ad4ee8)

2016-07-03 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-mount-plugin.

  from  3267e95   I18n: Update translation sv (100%).
   new  4ad4ee8   I18n: Update translation ko (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/ko.po | 88 +++-
 1 file changed, 26 insertions(+), 62 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-genmon-plugin] 01/01: I18n: Update translation ko (100%).

2016-07-03 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-genmon-plugin.

commit 42244da8cf3d312d69fdf5a3628a8d114e0a4969
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:31:40 2016 +0200

I18n: Update translation ko (100%).

14 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 106 +++
 1 file changed, 39 insertions(+), 67 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 97812fd..a28edaf 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,111 +1,83 @@
-# Korean translation for the xfce4-genmon-plugin package.
-# Copyright (C) 2004-2012 Roger Seguin et al.
-# This file is distributed under the same license as the xfce4-genmon-plugin 
package.
-# Seong-ho, Cho , 2012.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Seong-ho Cho , 2016
+# Seong-ho Cho , 2012
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-genmon-plugin.master\n"
-"Report-Msgid-Bugs-To: xfce4-users-kr-i18n 
\n"
-"POT-Creation-Date: 2012-02-28 04:03+\n"
-"PO-Revision-Date: 2012-02-28 16:54+0900\n"
-"Last-Translator: Seong-ho, Cho \n"
-"Language-Team: xfce4-users-kr-i18n 
\n"
-"Language: ko\n"
+"Project-Id-Version: Xfce Panel Plugins\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2016-06-10 06:31+0200\n"
+"PO-Revision-Date: 2016-07-03 13:41+\n"
+"Last-Translator: Seong-ho Cho \n"
+"Language-Team: Korean 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Poedit-Language: Korean\n"
-"X-Poedit-Country: KOREA, REPUBLIC OF\n"
-"X-Poedit-SourceCharset: utf-8\n"
 
-#: ../panel-plugin/cmdspawn.c:174
+#: ../panel-plugin/cmdspawn.c:166
 #, c-format
 msgid "Error in command \"%s\""
-msgstr "명령 \"%s\" 오류"
+msgstr "\"%s\" 명령 오류"
 
-#: ../panel-plugin/cmdspawn.c:177
-#: ../panel-plugin/main.c:104
+#: ../panel-plugin/cmdspawn.c:168 ../panel-plugin/main.c:94
 msgid "Xfce Panel"
 msgstr "Xfce 패널"
 
-#: ../panel-plugin/config_gui.c:81
+#: ../panel-plugin/config_gui.c:78
 msgid "Command"
 msgstr "명령"
 
-#: ../panel-plugin/config_gui.c:95
-msgid "Input the shell command to spawn, then press "
-msgstr "실행할 쉘 명령을 입력하고, 를 누릅니다"
-
-#: ../panel-plugin/config_gui.c:114
-msgid "Interval between 2 consecutive spawns"
-msgstr "2개의 연속 실행간 시간 간격"
-
-#: ../panel-plugin/config_gui.c:118
+#: ../panel-plugin/config_gui.c:107
 msgid "Period (s) "
 msgstr "주기 (초)"
 
-#: ../panel-plugin/config_gui.c:126
+#: ../panel-plugin/config_gui.c:115
 msgid "Label"
 msgstr "레이블"
 
-#: ../panel-plugin/config_gui.c:131
-msgid "Tick to display label"
-msgstr "레이블을 보이려면 선택합니다"
-
-#: ../panel-plugin/config_gui.c:140
-msgid "Input the plugin label, then press "
-msgstr "플러그인 레이블을 입력하고, 를 누릅니다"
-
-#: ../panel-plugin/config_gui.c:143
+#: ../panel-plugin/config_gui.c:126
 msgid "(genmon)"
 msgstr "(genmon)"
 
-#: ../panel-plugin/config_gui.c:152
-msgid "Press to change font"
-msgstr "글꼴을 바꾸려면 누릅니다"
+#: ../panel-plugin/config_gui.c:132
+msgid "Select the display font..."
+msgstr "화면에 나타낼 글꼴 선택..."
 
-#: ../panel-plugin/config_gui.c:167
-msgid "(Default font)"
-msgstr "(기본 글꼴)"
-
-#: ../panel-plugin/main.c:103
+#: ../panel-plugin/main.c:93
 #, c-format
 msgid "Could not run \"%s\""
 msgstr "\"%s\"을(를) 실행할 수 없습니다"
 
-#: ../panel-plugin/main.c:595
+#: ../panel-plugin/main.c:613
 msgid ""
-"Cyclically spawns a script/program, captures its output and displays the 
resulting string in the panel\n"
-"\n"
-"(c) 2004 Roger Seguin \n"
-"(c) 2006 Julien Devemy "
-msgstr ""
-"스크립트/프로그램을 돌아가면서 실행합니다. 출력을 잡아서 패널에 문자열로 보여줍니다\n"
-"\n"
-"(c) 2004 Roger Seguin \n"
-"(c) 2006 Julien Devemy "
+"Cyclically spawns a script/program, captures its output and displays the "
+"resulting string in the panel"
+msgstr "스크립트/프로그램을 돌아가면서 실행합니다. 출력을 잡아서 패널에 문자열로 보여줍니다 "
 
-#: ../panel-plugin/main.c:599
-#, c-format
-msgid "%s %s - Generic Monitor"
-msgstr "%s %s - 일반 감시기"
+#: ../panel-plugin/main.c:615
+msgid ""
+"Copyright © 2004 Roger Seguin\n"
+"Copyright © 2006 Julien Devemy\n"
+"Copyright © 2016 Tony Paulic\n"
+msgstr "Copyright © 2004 Roger Seguin\nCopyright © 2006 Julien 
Devemy\nCopyright © 2016 Tony Paulic\n"
 
-#: ../panel-plugin/main.c:613
+#: ../panel-plugin/main.c:633
 msgid "Font Selection"
 msgstr "글꼴 선택"
 
-#: ../panel-plugin/main.c:658
+#: ../panel-plugin/main.c:677
 

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (e7240a8 -> 68e98ca)

2016-07-03 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-terminal.

  from  e7240a8   Make transparent background setting work (at least for 
GTK 3.20)
   new  68e98ca   I18n: Update translation ko (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/ko.po | 627 +++
 1 file changed, 348 insertions(+), 279 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-terminal] 01/01: I18n: Update translation ko (100%).

2016-07-03 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-terminal.

commit 68e98ca8003ee1b7a2772b52c7bf784c494cfd53
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:31:18 2016 +0200

I18n: Update translation ko (100%).

300 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 627 +++
 1 file changed, 348 insertions(+), 279 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 75b9e6d..76d8170 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 # Kibum Han , 2005
-# Darkcircle , 2014
+# Seong-ho Cho , 2014,2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-27 00:31+0100\n"
-"PO-Revision-Date: 2014-01-01 04:59+\n"
-"Last-Translator: Darkcircle \n"
-"Language-Team: Korean 
(http://www.transifex.com/projects/p/xfce/language/ko/)\n"
+"POT-Creation-Date: 2016-06-27 12:31+0200\n"
+"PO-Revision-Date: 2016-07-03 14:19+\n"
+"Last-Translator: Seong-ho Cho \n"
+"Language-Team: Korean 
(http://www.transifex.com/xfce/xfce-apps/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -100,7 +100,7 @@ msgstr "창 옵션"
 #. parameter of --geometry
 #: ../terminal/main.c:139
 msgid "geometry"
-msgstr "좌표"
+msgstr "크기"
 
 #. parameter of --role
 #: ../terminal/main.c:141
@@ -120,7 +120,7 @@ msgstr "아이콘"
 #: ../terminal/main.c:147
 #, c-format
 msgid "See the %s man page for full explanation of the options above."
-msgstr "다음 옵션에 대한 완전한 설명을 보려면 %s 맨페이지를 봅니다."
+msgstr "다음 옵션의 완전한 설명을 보려면 %s 맨페이지를 보십시오."
 
 #: ../terminal/main.c:180 ../xfce4-terminal.desktop.in.h:1
 msgid "Xfce Terminal"
@@ -146,12 +146,12 @@ msgstr "<%s>(으)로 버그를 알려주십시오."
 #: ../terminal/main.c:304
 #, c-format
 msgid "Unable to register terminal service: %s\n"
-msgstr "터미널 서비스를 등록하는데 실패했습니다: %s\n"
+msgstr "터미널 서비스 등록에 실패했습니다: %s\n"
 
-#: ../terminal/terminal-app.c:738
+#: ../terminal/terminal-app.c:780
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
-msgstr "공간위치 문자열 \"%s\"이(가) 잘못되었습니다\n"
+msgstr "\"%s\" 공간 크기 문자열이 잘못되었습니다\n"
 
 #: ../terminal/terminal-encoding-action.c:70
 msgid "Western European"
@@ -214,16 +214,36 @@ msgid "Vietnamese"
 msgstr "베트남어"
 
 #: ../terminal/terminal-encoding-action.c:85
+msgid "Nordic"
+msgstr "노르웨이어"
+
+#: ../terminal/terminal-encoding-action.c:86
+msgid "Celtic"
+msgstr "켈트어"
+
+#: ../terminal/terminal-encoding-action.c:87
+msgid "Romanian"
+msgstr "루마니아어"
+
+#: ../terminal/terminal-encoding-action.c:88
+msgid "Armenian"
+msgstr "아르메니아어"
+
+#: ../terminal/terminal-encoding-action.c:89
+msgid "Georgian"
+msgstr "그루지아어"
+
+#: ../terminal/terminal-encoding-action.c:90
 msgid "Unicode"
 msgstr "유니코드"
 
-#: ../terminal/terminal-encoding-action.c:86
+#: ../terminal/terminal-encoding-action.c:91
 msgid "Other"
 msgstr "기타"
 
 #. action to reset to the default
-#: ../terminal/terminal-encoding-action.c:254
-#: ../terminal/terminal-encoding-action.c:385
+#: ../terminal/terminal-encoding-action.c:269
+#: ../terminal/terminal-encoding-action.c:400
 #, c-format
 msgid "Default (%s)"
 msgstr "기본(%s)"
@@ -241,14 +261,14 @@ msgstr "화면이 일치하지 않습니다"
 msgid ""
 "Option \"--default-display\" requires specifying the default X display as "
 "its parameter"
-msgstr "옵션 \"--default-display\"은 파라미터로 기본 X 디스플레이를 지정해야 합니다"
+msgstr "옵션 \"--default-display\"에 매개변수로 기본 X 디스플레이를 지정해야 합니다"
 
 #: ../terminal/terminal-options.c:228
 #, c-format
 msgid ""
 "Option \"--default-working-directory\" requires specifying the default "
 "working directory as its parameter"
-msgstr "옵션 \"--default-working-directory\"은 파리미터로 기본 작업 디렉터리를 지정해야 합니다"
+msgstr "옵션 \"--default-working-directory\"에 매개변수로 기본 작업 디렉터리를 지정해야 합니다"
 
 #: ../terminal/terminal-options.c:245
 #, c-format
@@ -262,36 +282,36 @@ msgstr "옵션 \"--execute/-x\"는 명령행 뒤쪽에 실행할 명령을 지
 msgid ""
 "Option \"--command/-e\" requires specifying the command to run as its "
 "parameter"
-msgstr "옵션 \"--command/-e\"는 파라미터로 실행할 명령을 지정해야 합니다정"
+msgstr "옵션 \"--command/-e\"에 매개변수로 실행할 명령을 지정해야 합니다"
 
 #: ../terminal/terminal-options.c:279
 #, c-format
 msgid ""
 "Option \"--working-directory\" requires specifying the working directory as "
 "its parameter"
-msgstr "옵션 \"--working-directory\"은 파라미터로 작업 디렉터리를 명시해야 합니다"
+msgstr "옵션 \"--working-directory\"에 매개변수로 작업 디렉터리를 명시해야 합니다"
 
 #: ../terminal/terminal-options.c:294
 #, c-format
 msgid "Option \"--title/-T\" requires specifying the title as its parameter"
-msgstr "옵션 \"--title/-T\"은 파라미터로 타이틀을 지정해야 합니다"
+msgstr "옵션 \"--title/-T\"에 매개변수로 타이틀을 지정해야 합니다"
 
 #: ../terminal/terminal-options.c:313
 #, c-format
 msgid "Option \"--display\" requires specifying the X display as 

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

2016-07-03 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-clipman-plugin.

commit 881d89a7d583eceea1dcdd5b73581ca5a976beb5
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:31:29 2016 +0200

I18n: Update translation ko (100%).

72 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 104 +++
 1 file changed, 52 insertions(+), 52 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index c63c4b6..2ed6c0f 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-20 00:30+0200\n"
-"PO-Revision-Date: 2016-05-27 04:36+\n"
+"POT-Creation-Date: 2016-06-02 00:31+0200\n"
+"PO-Revision-Date: 2016-07-03 13:57+\n"
 "Last-Translator: Seong-ho Cho \n"
 "Language-Team: Korean 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -30,7 +30,7 @@ msgstr "클립보드 관리자는 Xfce 패널 플러그인이며, 알림 영역
 #: ../panel-plugin/xfce4-clipman-plugin.desktop.in.h:1
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:1
 #: ../panel-plugin/main-panel-plugin.c:73
-#: ../panel-plugin/main-status-icon.c:62 ../panel-plugin/plugin.c:319
+#: ../panel-plugin/main-status-icon.c:62 ../panel-plugin/plugin.c:318
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -72,25 +72,25 @@ msgstr "긴 URL"
 msgid "Shrink the URL"
 msgstr "URL 줄이기"
 
-#: ../panel-plugin/xfce4-clipman-settings.c:199
+#: ../panel-plugin/xfce4-clipman-settings.c:184
 msgid "None"
 msgstr "없음"
 
 #. TRANSLATORS: Keyboard shortcut
-#: ../panel-plugin/xfce4-clipman-settings.c:201
+#: ../panel-plugin/xfce4-clipman-settings.c:186
 msgid "Ctrl+V"
 msgstr "Ctrl+V"
 
 #. TRANSLATORS: Keyboard shortcut
-#: ../panel-plugin/xfce4-clipman-settings.c:203
+#: ../panel-plugin/xfce4-clipman-settings.c:188
 msgid "Shift+Insert"
 msgstr "Shift+Insert"
 
-#: ../panel-plugin/xfce4-clipman-settings.c:536
+#: ../panel-plugin/xfce4-clipman-settings.c:511
 msgid "Reset actions"
 msgstr "재설정 동작"
 
-#: ../panel-plugin/xfce4-clipman-settings.c:538
+#: ../panel-plugin/xfce4-clipman-settings.c:513
 msgid ""
 "Are you sure you want to reset the actions to the system default values?"
 msgstr "정말로 시스템 기본값으로 동작을 재설정 하시렵니까?"
@@ -105,7 +105,7 @@ msgid ""
 "commands. The parameter \"\\0\" represents the complete text. If you don't "
 "know regular expressions, have a look at the documentation of Clipman that "
 "has an introdution for them."
-msgstr "명령상에 대체 인자 \"\\1\", \"\\2\" 등을 사용할 수 있습니다. 인자 \"\\0\"은 완전한 본문을 나타냅니다. 
정규표현식을 잘 모른다면 정규표현식을 소개한 Clipman의 문서를 보십시오."
+msgstr "명령에 대체 인자 \"\\1\", \"\\2\" 등을 사용할 수 있습니다. 인자 \"\\0\"은 전체 문장을 나타냅니다. 정규 
표현식을 잘 모른다면 Clipman의 정규표현식 소개 문서를 보십시오."
 
 #: ../panel-plugin/settings-dialog.ui.h:3
 msgid "Name:"
@@ -117,17 +117,17 @@ msgstr "패턴:"
 
 #: ../panel-plugin/settings-dialog.ui.h:5
 msgid "The pattern is always anchored within the special characters ^$"
-msgstr "패턴은 언제나 특수문자 ^$에 연결됩니다"
+msgstr "패턴을 항상 특수문자 ^$에 연결합니다"
 
 #: ../panel-plugin/settings-dialog.ui.h:6
 msgid "Activate only on manual copy"
-msgstr "수동 복사할 때만 활성화"
+msgstr "직접 복사할 때만 활성화"
 
 #: ../panel-plugin/settings-dialog.ui.h:7
 msgid ""
 "By default the action is triggerred by a selection, check this option to "
 "trigger the action only when you make a manual copy"
-msgstr "기본적으로 선택에 따라 동작을 시작하니, 수동 복사를 만들 때만 동작을 수행하려면 이 옵션을 표시하도록 합니다"
+msgstr "기본적으로 선택 여부에 따라 동작하므로, 직접 복사할 때만 동작을 수행하려면 이 옵션을 표시하십시오"
 
 #: ../panel-plugin/settings-dialog.ui.h:8
 msgid "Action"
@@ -149,7 +149,7 @@ msgstr "선택 항목 동기화(_S)"
 msgid ""
 "If checked, the selections will be synced with the default clipboard in a "
 "way that you can paste what you select"
-msgstr "이것을 표시하면 선택한 항목을 선택하여 붙일 수 있도록 기본 클립보드와 동기화 합니다"
+msgstr "이 부분을 표시하면 선택한 항목을 선택하여 붙일 수 있도록 기본 클립보드와 동기화 합니다"
 
 #: ../panel-plugin/settings-dialog.ui.h:13
 msgid "Show _QR-Code"
@@ -172,7 +172,7 @@ msgstr "저장하고 나가기(_Q)"
 #: ../panel-plugin/settings-dialog.ui.h:17
 msgid ""
 "If checked, this option will restore the history on every new Xfce session"
-msgstr "이것을 표시하면 새로 Xfce 세션을 시작할 때마다 기록을 복원합니다"
+msgstr "이 부분을 표시하면 새로 Xfce 세션을 시작할 때마다 기록을 복원합니다"
 
 #: ../panel-plugin/settings-dialog.ui.h:18
 msgid "Store last copied _image"
@@ -180,7 +180,7 @@ msgstr "마지막에 복사한 그림 저장(_I)"
 
 #: ../panel-plugin/settings-dialog.ui.h:19
 msgid "If checked, this option allows to store one image inside the history"
-msgstr "이것을 표시하면 기록 안에 그림을 저장할 수 있도록 합니다"
+msgstr "이 부분을 표시하면 기록 안에 그림을 저장할 수 있도록 합니다"
 
 #: ../panel-plugin/settings-dialog.ui.h:20
 msgid "Ignore s_elections"
@@ -189,7 +189,7 @@ msgstr "선택 무시(_E)"
 #: ../panel-plugin/settings-dialog.ui.h:21
 msgid ""
 "If checked, the selections won't affect the history except the manual copies"
-msgstr "이것을 표시하면 수동 복사를 제외한 모든 기록에 선택에 대한 영향을 주지 않습니다. "

[Xfce4-commits] [panel-plugins/xfce4-clipman-plugin] branch master updated (799b6f4 -> 881d89a)

2016-07-03 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-clipman-plugin.

  from  799b6f4   I18n: Update translation sv (100%).
   new  881d89a   I18n: Update translation ko (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/ko.po | 104 +++
 1 file changed, 52 insertions(+), 52 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-session] 01/01: I18n: Update translation ko (100%).

2016-07-03 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-session.

commit 8afa68c84c67496f913b25535902b41df1948120
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:30:50 2016 +0200

I18n: Update translation ko (100%).

175 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 124 +++
 1 file changed, 62 insertions(+), 62 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 9ef84e8..79cc16b 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-05-23 18:30+0200\n"
-"PO-Revision-Date: 2016-05-27 04:33+\n"
+"POT-Creation-Date: 2016-06-28 18:30+0200\n"
+"PO-Revision-Date: 2016-07-03 13:35+\n"
 "Last-Translator: Seong-ho Cho \n"
 "Language-Team: Korean 
(http://www.transifex.com/xfce/xfce4-session/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -35,7 +35,7 @@ msgstr "설명이 없습니다."
 msgid "Choose theme file to install..."
 msgstr "설치하고자 하는 테마를 선택합니다..."
 
-#: ../engines/balou/config.c:327 ../engines/balou/config.c:494
+#: ../engines/balou/config.c:327 ../engines/balou/config.c:495
 #: ../settings/session-editor.c:173 ../settings/session-editor.c:257
 #: ../xfce4-session/xfsm-logout-dialog.c:209
 #: ../xfce4-session/xfsm-splash-screen.c:213
@@ -59,50 +59,50 @@ msgstr "테마 파일 오류"
 msgid "Please check that the file is a valid splash theme archive."
 msgstr "파일이 올바른 시작 화면 테마 아카이브인지 확인하여 주십시오."
 
-#: ../engines/balou/config.c:344 ../engines/balou/config.c:948
+#: ../engines/balou/config.c:344 ../engines/balou/config.c:949
 #: ../engines/simple/simple.c:338 ../settings/session-editor.c:132
-#: ../xfce4-session/xfsm-manager.c:1145
+#: ../settings/session-editor.c:289 ../xfce4-session/xfsm-manager.c:1223
 msgid "_Close"
 msgstr "닫기(_O)"
 
-#: ../engines/balou/config.c:402
+#: ../engines/balou/config.c:403
 #, c-format
 msgid "Unable to remove splash theme \"%s\" from directory %s."
 msgstr "\"%s\" 시작 화면 테마를 %s 디렉터리에서 제거하지 못했습니다."
 
-#: ../engines/balou/config.c:491
+#: ../engines/balou/config.c:492
 msgid "Choose theme filename..."
 msgstr "테마 파일 이름 선택..."
 
-#: ../engines/balou/config.c:495
+#: ../engines/balou/config.c:496
 msgid "_Save"
 msgstr "저장(_S)"
 
-#: ../engines/balou/config.c:623
+#: ../engines/balou/config.c:624
 msgid "_Install new theme"
 msgstr "새로운 테마 설치(_I)"
 
-#: ../engines/balou/config.c:630
+#: ../engines/balou/config.c:631
 msgid "_Remove theme"
 msgstr "테마 제거(_R)"
 
-#: ../engines/balou/config.c:645
+#: ../engines/balou/config.c:646
 msgid "_Export theme"
 msgstr "테마 내보내기(_E)"
 
-#: ../engines/balou/config.c:859
+#: ../engines/balou/config.c:860
 msgid "Balou theme"
 msgstr "Balou 테마"
 
-#: ../engines/balou/config.c:944
+#: ../engines/balou/config.c:945
 msgid "Configure Balou..."
 msgstr "Balou 테마 설정..."
 
-#: ../engines/balou/config.c:986
+#: ../engines/balou/config.c:987
 msgid "Balou"
 msgstr "Balou"
 
-#: ../engines/balou/config.c:987
+#: ../engines/balou/config.c:988
 msgid "Balou Splash Engine"
 msgstr "Balou 시작 화면 엔진"
 
@@ -182,23 +182,23 @@ msgstr "SOCKET ID"
 msgid "Version information"
 msgstr "버전 정보"
 
-#: ../settings/main.c:80 ../xfce4-session/main.c:338
+#: ../settings/main.c:80 ../xfce4-session/main.c:343
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "사용방법을 보려면 '%s --help'를 입력합니다."
 
-#: ../settings/main.c:92 ../xfce4-session/main.c:348
-#: ../xfce4-session-logout/main.c:134
+#: ../settings/main.c:92 ../xfce4-session/main.c:353
+#: ../xfce4-session-logout/main.c:140
 msgid "The Xfce development team. All rights reserved."
 msgstr "Xfce 개발 팀. All rights reserved."
 
-#: ../settings/main.c:93 ../xfce4-session/main.c:349
-#: ../xfce4-session-logout/main.c:137
+#: ../settings/main.c:93 ../xfce4-session/main.c:354
+#: ../xfce4-session-logout/main.c:143
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "<%s>로 버그를 알려주십시오."
 
-#: ../settings/main.c:102 ../xfce4-session/main.c:357
+#: ../settings/main.c:102 ../xfce4-session/main.c:362
 msgid "Unable to contact settings server"
 msgstr "설정 서버로 연결할 수 없습니다"
 
@@ -249,10 +249,6 @@ msgid ""
 msgstr "다음 로그인을 진행하는 동안 프로그램의 저장한 상태를 복원하지 않습니다."
 
 #: ../settings/session-editor.c:174
-msgid "_Ok"
-msgstr "확인(_O)"
-
-#: ../settings/session-editor.c:174
 msgid "_Proceed"
 msgstr "수행(_P)"
 
@@ -280,10 +276,6 @@ msgid ""
 "your next session."
 msgstr "프로그램은 저장하지 않은 상태를 잃을 것이며 다음 세션에서 다시 시작 하지 않습니다."
 
-#: ../settings/session-editor.c:258 ../xfce4-session/xfsm-manager.c:725
-msgid "_Quit"
-msgstr "끝내기(_Q)"
-
 #: ../settings/session-editor.c:258
 msgid "_Quit Program"
 msgstr "프로그램 종료(_Q)"
@@ -292,10 +284,6 @@ msgstr "프로그램 종료(_Q)"
 msgid "Unable to terminate program."
 msgstr "프로그램을 중단할 수 없습니다."
 
-#: ../settings/session-editor.c:289
-msgid "Close"
-msgstr "닫기"
-
 #: 

[Xfce4-commits] [xfce/xfce4-session] branch master updated (4d1e0bc -> 8afa68c)

2016-07-03 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-session.

  from  4d1e0bc   I18n: Update translation sk (100%).
   new  8afa68c   I18n: Update translation ko (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/ko.po | 124 +++
 1 file changed, 62 insertions(+), 62 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/garcon] 01/01: I18n: Update translation ko (100%).

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

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

commit ac20bfd9345dff147d55e6691ae0b2eb9a5eb3f3
Author: Seong-ho Cho 
Date:   Sun Jul 3 18:30:09 2016 +0200

I18n: Update translation ko (100%).

36 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ko.po | 42 ++
 1 file changed, 26 insertions(+), 16 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 3b1f74e..da4172b 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Darkcircle , 2011-2013
+# Seong-ho Cho , 2011-2013,2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-08-03 00:30+0200\n"
-"PO-Revision-Date: 2013-08-21 06:02+\n"
-"Last-Translator: Darkcircle \n"
-"Language-Team: Korean 
(http://www.transifex.com/projects/p/xfce/language/ko/)\n"
+"POT-Creation-Date: 2016-06-20 18:30+0200\n"
+"PO-Revision-Date: 2016-07-03 13:39+\n"
+"Last-Translator: Seong-ho Cho \n"
+"Language-Team: Korean (http://www.transifex.com/xfce/garcon/language/ko/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -56,7 +56,7 @@ msgstr "그래픽"
 
 #: ../data/xfce/xfce-graphics.directory.in.h:2
 msgid "Graphics creation and manipulation applications"
-msgstr "그래픽 저작도구 및 편집 프로그램"
+msgstr "그래픽 저작 도구 및 편집 프로그램"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:1
 msgid "Hardware"
@@ -64,7 +64,7 @@ msgstr "하드웨어"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:2
 msgid "Settings for several hardware devices"
-msgstr "다양한 하드웨어 장치를 위한 설정"
+msgstr "다양한 하드웨어 장치 설정"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:1
 msgid "Multimedia"
@@ -120,7 +120,7 @@ msgstr "설정"
 
 #: ../data/xfce/xfce-settings.directory.in.h:2
 msgid "Desktop and system settings applications"
-msgstr "데스크톱과 시스템 설정 프로그램"
+msgstr "데스크톱 및 시스템 설정 프로그램"
 
 #: ../data/xfce/xfce-system.directory.in.h:1
 msgid "System"
@@ -133,7 +133,7 @@ msgstr "시스템 도구와 유틸리티"
 #: ../garcon/garcon-menu.c:702
 #, c-format
 msgid "File \"%s\" not found"
-msgstr "파일 \"%s\"을(를) 찾을 수 없습니다"
+msgstr "\"%s\" 파일이 없습니다"
 
 #: ../garcon/garcon-menu-parser.c:276
 #, c-format
@@ -145,15 +145,25 @@ msgstr "%s에서 메뉴 파일 데이터를 불러올 수 없습니다: %s"
 msgid "Could not load menu file data from %s"
 msgstr "%s에서 메뉴 파일 데이터를 불러올 수 없습니다"
 
-#: ../garcon-gtk/garcon-gtk-menu.c:389
+#: ../garcon-gtk/garcon-gtk-menu.c:446
 #, c-format
 msgid "Failed to execute command \"%s\"."
-msgstr "\"%s\" 명령을 실행하는데 실패했습니다."
+msgstr "\"%s\" 명령 실행에 실패했습니다."
 
-#: ../garcon-gtk/garcon-gtk-menu.c:652
-msgid "No applications found"
-msgstr "프로그램을 찾을 수 없습니다"
+#: ../garcon-gtk/garcon-gtk-menu.c:472
+msgid "Launch Error"
+msgstr "실행 오류"
 
-#: ../garcon-gtk/garcon-gtk-menu.c:664
+#: ../garcon-gtk/garcon-gtk-menu.c:474
+msgid ""
+"Unable to launch \"exo-desktop-item-edit\", which is required to create and "
+"edit menu items."
+msgstr "데스크톱에 실행 아이콘과 링크를 만들고 수정하는데 필요한 \"exo-desktop-item-edit\"을 실행하지 못했습니다."
+
+#: ../garcon-gtk/garcon-gtk-menu.c:476
+msgid "_Close"
+msgstr "닫기(_C)"
+
+#: ../garcon-gtk/garcon-gtk-menu.c:988
 msgid "Failed to load the applications menu"
-msgstr "프로그램 메뉴를 불러오는데 실패했습니다"
+msgstr "프로그램 메뉴 불러오기에 실패했습니다"

-- 
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/garcon] branch master updated (52de490 -> ac20bfd)

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

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

  from  52de490   I18n: Update translation nb (100%).
   new  ac20bfd   I18n: Update translation ko (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/ko.po | 42 ++
 1 file changed, 26 insertions(+), 16 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] 03/03: Added option to "not ask again for this session" when sending files to the trash. Image deletions still require confirmation.

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

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

commit d78bfb7048bdc4a26ac2b65b15d3f75efd975ebe
Author: cricketer 
Date:   Sun Jul 3 17:17:23 2016 +0700

Added option to "not ask again for this session" when sending files to the 
trash. Image deletions still require confirmation.

Signed-off-by: Eric Koegel 
---
 src/main_window.c | 143 +-
 1 file changed, 89 insertions(+), 54 deletions(-)

diff --git a/src/main_window.c b/src/main_window.c
index ef91281..b01254d 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -3349,6 +3349,67 @@ cb_rstto_main_window_edit (
 }
 
 /**
+ * rstto_confirm_deletion:
+ * @window: Ristretto main window
+ * @file: Ristretto file to delete
+ * @to_trash: File is to be trashed (TRUE) or deleted (FALSE)
+ *
+ * Show dialog to confirm deletion/trashing.
+ * Use can choose not be be asked again if the file is to be trashed.
+ */
+static int
+rstto_confirm_deletion(
+RsttoMainWindow *window,
+RsttoFile *file,
+gboolean to_trash )
+{
+static gboolean dont_ask_trash = FALSE;
+gchar *prompt = NULL;
+const gchar *file_basename = rstto_file_get_display_name(file);
+GtkWidget *dialog;
+GtkWidget* dont_ask_checkbox = NULL;
+
+if ( to_trash )
+{
+if ( dont_ask_trash )
+{
+return GTK_RESPONSE_OK;
+}
+prompt = g_strdup_printf( _("Are you sure you want to send image '%s' 
to trash?"), file_basename );
+}
+else
+{
+prompt = g_strdup_printf( _("Are you sure you want to delete image 
'%s' from disk?"), file_basename );
+}
+dialog = gtk_message_dialog_new(
+GTK_WINDOW(window),
+GTK_DIALOG_DESTROY_WITH_PARENT,
+GTK_MESSAGE_WARNING,
+GTK_BUTTONS_OK_CANCEL,
+"%s",
+prompt);
+
+if ( to_trash ) {
+dont_ask_checkbox = gtk_check_button_new_with_mnemonic (_("_Do not ask 
again for this session"));
+gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dont_ask_checkbox), 
FALSE);
+gtk_box_pack_end (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG 
(dialog))), dont_ask_checkbox, TRUE, TRUE, 0);
+gtk_widget_show( dont_ask_checkbox );
+
gtk_widget_grab_focus(gtk_dialog_get_widget_for_response(GTK_DIALOG(dialog), 
GTK_RESPONSE_CANCEL));
+}
+
+int response = gtk_dialog_run( GTK_DIALOG( dialog ) );
+if ( to_trash && (response == GTK_RESPONSE_OK) )
+{
+  dont_ask_trash = gtk_toggle_button_get_active( 
GTK_TOGGLE_BUTTON(dont_ask_checkbox) );
+}
+gtk_widget_destroy(dialog);
+
+g_free( prompt );
+
+return response;
+}
+
+/**
  * cb_rstto_main_window_delete:
  * @widget:
  * @window:
@@ -3365,6 +3426,8 @@ cb_rstto_main_window_delete (
 GtkWidget *dialog;
 GdkModifierType state;
 gboolean delete_file = FALSE;
+gboolean success = FALSE;
+gchar *prompt = NULL;
 GError *error = NULL;
 
 g_return_if_fail (rstto_image_list_get_n_images (window->priv->image_list) 
> 0);
@@ -3377,72 +3440,44 @@ cb_rstto_main_window_delete (
 }
 }
 
-if (delete_file)
+int response = rstto_confirm_deletion( window, file, !delete_file );
+if ( response == GTK_RESPONSE_OK )
 {
-dialog = gtk_message_dialog_new (
-GTK_WINDOW (window),
-GTK_DIALOG_DESTROY_WITH_PARENT,
-GTK_MESSAGE_WARNING,
-GTK_BUTTONS_OK_CANCEL,
-_("Are you sure you want to delete image '%s' from disk?"),
-file_basename);
-
 g_object_ref (file);
-if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK)
+if (delete_file)
 {
-if (g_file_delete (rstto_file_get_file(file), NULL, ) == 
TRUE)
-{
-rstto_image_list_remove_file (window->priv->image_list, file);
-}
-else
-{
-gtk_widget_destroy (dialog);
-dialog = gtk_message_dialog_new (
-GTK_WINDOW (window),
-GTK_DIALOG_DESTROY_WITH_PARENT,
-GTK_MESSAGE_ERROR,
-GTK_BUTTONS_OK,
-_("An error occurred when deleting image '%s' from 
disk.\n\n%s"),
-file_basename,
-error->message);
-gtk_dialog_run (GTK_DIALOG (dialog)); 
-}
+success = g_file_delete (rstto_file_get_file(file), NULL, );
+}
+else
+{
+success = g_file_trash (rstto_file_get_file(file), NULL, );
 }
-gtk_widget_destroy (dialog);
-g_object_unref (file);
-}
-else
-{
-dialog = gtk_message_dialog_new (
-GTK_WINDOW 

[Xfce4-commits] [apps/ristretto] 01/03: ESC-key now quits Ristretto, or pauses a running slideshow.

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

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

commit f27afb7070ec3c94420c877bbb4c671f5c655dc3
Author: Cricketer 
Date:   Sun Jul 3 13:38:35 2016 +0700

ESC-key now quits Ristretto, or pauses a running slideshow.

Signed-off-by: Eric Koegel 
---
 src/main_window.c | 12 
 1 file changed, 12 insertions(+)

diff --git a/src/main_window.c b/src/main_window.c
index 41e6309..9370996 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -4125,6 +4125,18 @@ key_press_event (
 case GDK_Down:
 rstto_image_list_iter_next (rstto_window->priv->iter);
 break;
+case GDK_KEY_Escape:
+if ( rstto_window->priv->playing == TRUE )
+{
+cb_rstto_main_window_pause( GTK_WIDGET(window), 
rstto_window );
+}
+else {
+if ( !(gdk_window_get_state( GTK_WIDGET(window)->window ) 
& GDK_WINDOW_STATE_FULLSCREEN) )
+{
+gtk_widget_destroy( GTK_WIDGET(window) );
+}
+}
+break;
 }
 }
 return TRUE;

-- 
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] 02/03: Replaced "GTK_WIDGET(window)->window" with more future compatible "gtk_widget_get_window(GTK_WIDGET(window))".

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

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

commit e35e0eb109aff2b5a536a01f9a1310316339ae3e
Author: Cricketer 
Date:   Sun Jul 3 14:17:56 2016 +0700

Replaced "GTK_WIDGET(window)->window" with more future compatible 
"gtk_widget_get_window(GTK_WIDGET(window))".

Signed-off-by: Eric Koegel 
---
 src/main_window.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main_window.c b/src/main_window.c
index 9370996..ef91281 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -4131,7 +4131,7 @@ key_press_event (
 cb_rstto_main_window_pause( GTK_WIDGET(window), 
rstto_window );
 }
 else {
-if ( !(gdk_window_get_state( GTK_WIDGET(window)->window ) 
& GDK_WINDOW_STATE_FULLSCREEN) )
+if ( !(gdk_window_get_state( 
gtk_widget_get_window(GTK_WIDGET(window)) ) & GDK_WINDOW_STATE_FULLSCREEN) )
 {
 gtk_widget_destroy( GTK_WIDGET(window) );
 }

-- 
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 (177c4f0 -> d78bfb7)

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

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

  from  177c4f0   I18n: Update translation lt (100%).
   new  f27afb7   ESC-key now quits Ristretto, or pauses a running 
slideshow.
   new  e35e0eb   Replaced "GTK_WIDGET(window)->window" with more future 
compatible "gtk_widget_get_window(GTK_WIDGET(window))".
   new  d78bfb7   Added option to "not ask again for this session" when 
sending files to the trash. Image deletions still require confirmation.

The 3 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/main_window.c | 155 +++---
 1 file changed, 101 insertions(+), 54 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-notifyd] branch master updated (2225153 -> 8e7a792)

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

ochosi pushed a change to branch master
in repository apps/xfce4-notifyd.

  from  2225153   Bump dependencies
   new  8e7a792   Fix small error in Smoke theme

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:
 themes/Smoke/gtk.css | 4 ++--
 1 file changed, 2 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/xfce4-notifyd] 01/01: Fix small error in Smoke theme

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

ochosi pushed a commit to branch master
in repository apps/xfce4-notifyd.

commit 8e7a7921a6962bea8322f65cbda3464ae24eed45
Author: Simon Steinbeiss 
Date:   Sun Jul 3 11:06:47 2016 +0200

Fix small error in Smoke theme
---
 themes/Smoke/gtk.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/themes/Smoke/gtk.css b/themes/Smoke/gtk.css
index eefc663..a18716d 100644
--- a/themes/Smoke/gtk.css
+++ b/themes/Smoke/gtk.css
@@ -1,5 +1,5 @@
 #XfceNotifyWindow {
-
+
 background-color: #4d4d4d;
 border-radius: 20px;
 border-color : #ff;
@@ -18,7 +18,7 @@
 -GtkWidget-link-color:#a7a7a7;
 }
 
-#XfceNotifyWindow GtkLabel#summay {
+#XfceNotifyWindow GtkLabel#summary {
 font : Bold;
 }
 

-- 
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