File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2121#
2222import logging
2323
24- from simpleline .utils .i18n import C_ , N_ , _
24+ from simpleline .utils .i18n import N_ , _
2525
2626log = logging .getLogger ("simpleline" )
2727
@@ -35,20 +35,20 @@ class Prompt():
3535 ENTER = N_ ("ENTER" )
3636
3737 # TRANSLATORS: 'q' to quit
38- QUIT = C_ ('TUI|Spoke Navigation' , 'q' )
3938 QUIT_DESCRIPTION = N_ ("to quit" )
39+ QUIT = 'q'
4040
4141 # TRANSLATORS:'c' to continue
42- CONTINUE = C_ ('TUI|Spoke Navigation' , 'c' )
4342 CONTINUE_DESCRIPTION = N_ ("to continue" )
43+ CONTINUE = 'c'
4444
4545 # TRANSLATORS:'r' to refresh
46- REFRESH = C_ ('TUI|Spoke Navigation' , 'r' )
4746 REFRESH_DESCRIPTION = N_ ("to refresh" )
47+ REFRESH = 'r'
4848
4949 # TRANSLATORS:'h' to help
50- HELP = C_ ('TUI|Spoke Navigation' , 'h' )
5150 HELP_DESCRIPTION = N_ ("to help" )
51+ HELP = 'h'
5252
5353 def __init__ (self , message = DEFAULT_MESSAGE ):
5454 """
You can’t perform that action at this time.
0 commit comments