From 11e85ac703f89b0c0d1a70e75dde0daf64883af2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 24 Feb 2018 14:51:49 +0530 Subject: [PATCH] Swapped unicode input name and hex mode prompt strings --- kittens/unicode_input/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kittens/unicode_input/main.py b/kittens/unicode_input/main.py index 2515f49cd..6cdc353b1 100644 --- a/kittens/unicode_input/main.py +++ b/kittens/unicode_input/main.py @@ -361,9 +361,9 @@ class UnicodeInput(Handler): y += 1 if self.mode is NAME: - writeln(_('Enter the hex code for the character')) - elif self.mode is HEX: writeln(_('Enter words from the name of the character')) + elif self.mode is HEX: + writeln(_('Enter the hex code for the character')) else: writeln(_('Enter the index for the character you want from the list below')) self.write(self.prompt)