diff options
author | infirit <[email protected]> | 2014-12-19 01:17:13 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-19 01:17:13 +0100 |
commit | fdd68b3d1577af90bd37d990ac09ba8b5ee2f70d (patch) | |
tree | d4136b6e420065db667280b4868fb93b32d8a1b7 /src/sysinfo.cpp | |
parent | 0dc96be11c125a73113985c37b6d91824578c43c (diff) | |
download | mate-system-monitor-fdd68b3d1577af90bd37d990ac09ba8b5ee2f70d.tar.bz2 mate-system-monitor-fdd68b3d1577af90bd37d990ac09ba8b5ee2f70d.tar.xz |
Remove markup from translated strings
Including the markup in the translated strings makes the
translators job unnecessarily harder.
Taken from GSM commit: c45ed812a74874ada38feaf4883de807d2a26cfb
From: Matthias Clasen <[email protected]>
Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=681271
Diffstat (limited to 'src/sysinfo.cpp')
-rw-r--r-- | src/sysinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysinfo.cpp b/src/sysinfo.cpp index 857570b..257baa1 100644 --- a/src/sysinfo.cpp +++ b/src/sysinfo.cpp @@ -806,7 +806,7 @@ procman_create_sysinfo_view(void) /* hardware section */ - markup = g_strdup_printf(_("<b>Hardware</b>")); + markup = g_strdup_printf("<b>%s</b>", _("Hardware")); hardware_table = add_section(GTK_BOX(vbox), markup, 1, 2, NULL); g_free(markup); @@ -823,7 +823,7 @@ procman_create_sysinfo_view(void) /* disk space section */ - markup = g_strdup_printf(_("<b>System Status</b>")); + markup = g_strdup_printf("<b>%s</b>", _("System Status")); disk_space_table = add_section(GTK_BOX(vbox), markup, 1, 2, NULL); g_free(markup); |