[PATCH 2/2] Don't attempt to translate ""

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The empty string has a magic meaning for gettext, it's used to
store a translation header with all kind of information about the
po file. This is not something we want to use as a window title, so
change to _("") to "" when we want an empty string.
---
 src/virt-viewer-window.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/virt-viewer-window.c b/src/virt-viewer-window.c
index 708678a..e2f5425 100644
--- a/src/virt-viewer-window.c
+++ b/src/virt-viewer-window.c
@@ -896,9 +896,9 @@ virt_viewer_window_update_title(VirtViewerWindow *self)
          */
         title = g_strdup_printf(_("%s%s%s - %s"),
                                 /* translators: <ungrab empty> */
-                                ungrab ? ungrab : _(""),
+                                ungrab ? ungrab : "",
                                 /* translators: <space> */
-                                ungrab && priv->subtitle ? _(" ") : _(""),
+                                ungrab && priv->subtitle ? _(" ") : "",
                                 priv->subtitle,
                                 g_get_application_name());
 
-- 
1.7.7.6


[Index of Archives]     [Linux Virtualization]     [KVM Development]     [CentOS Virtualization]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite Forum]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux