summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfujiwarat <takao.fujiwara1@gmail.com>2014-03-06 11:44:01 +0900
committerfujiwarat <takao.fujiwara1@gmail.com>2014-03-06 11:44:01 +0900
commit698e85bce8ec948c55997b0a59e0a59803a5a312 (patch)
tree14b76f94d04e6db52579ef8b59320e0595a9d693
parent3e0abec1e26657316649ffc15415281890c2fde9 (diff)
Fix python comment in escape sequence.
Review URL: https://codereview.appspot.com/69840043
-rw-r--r--setup/main.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/setup/main.py b/setup/main.py
index 9c98c41f..dee7be4d 100644
--- a/setup/main.py
+++ b/setup/main.py
@@ -373,9 +373,10 @@ class Setup(object):
def __shortcut_button_clicked_cb(self, button, name, section, _name, entry):
buttons = (_("_Cancel"), Gtk.ResponseType.CANCEL,
_("_OK"), Gtk.ResponseType.OK)
- title = _("Select keyboard shortcut for %s") % \
- # Translators: Title of the window
- _("switching input methods")
+ title1 = _("Select keyboard shortcut for %s")
+ # Translators: Title of the window
+ title2 = _("switching input methods")
+ title = title1 % title2
dialog = keyboardshortcut.KeyboardShortcutSelectionDialog(buttons = buttons, title = title)
text = entry.get_text()
if text: