From a6b348b37dd4da614261ac50e58cd1ec564b2921 Mon Sep 17 00:00:00 2001 From: Devrim Date: Mon, 25 Mar 2024 10:20:48 +0300 Subject: [PATCH] fix(jans-cli-tui): typo in agama help popup (#8135) Signed-off-by: Mustafa Baser --- jans-cli-tui/cli_tui/plugins/010_auth_server/agama.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jans-cli-tui/cli_tui/plugins/010_auth_server/agama.py b/jans-cli-tui/cli_tui/plugins/010_auth_server/agama.py index aa700296c5d..fc197a150f8 100644 --- a/jans-cli-tui/cli_tui/plugins/010_auth_server/agama.py +++ b/jans-cli-tui/cli_tui/plugins/010_auth_server/agama.py @@ -36,9 +36,9 @@ def __init__( self.data = [] self.first_enter = False self.jans_help = get_help_with( - f' {_("Display agama project config")}\n' - f' {_("Manage agama project Configuration")}\n' - f' {_("Delete current agama project")}', + f' {_("Display Agama project config")}\n' + f' {_("Manage Agama project Configuration")}\n' + f' {_("Delete current Agama project")}', without=['d', 'delete'] ) @@ -69,8 +69,8 @@ def __init__( self.main_container.on_page_enter = self.on_page_enter self.main_container.jans_help = get_help_with( - f' {_("Display agama project details")}\n' - f' {_("Managey agama project configuration")}\n', + f' {_("Display Agama project details")}\n' + f' {_("Manage Agama project configuration")}\n', without=['v', 'enter'] )