diff --git a/sshch/sshch b/sshch/sshch index 9203ea7..d49ffb3 100755 --- a/sshch/sshch +++ b/sshch/sshch @@ -163,7 +163,7 @@ def CMDRemove(alias): if string == "yes": RemoveAliases([alias]) else: - print("'" + alias + "' alias or group does not deleted.") + print("'" + alias + "' alias or group was not deleted.") else: print("error: '" + alias + "' alias or group does not exists.") @@ -517,7 +517,7 @@ def CursesMain(): 'G') or key_pressed == curses.KEY_F5: curses.curs_set(1) new_group_textpad = CursesTextpad(screen, 1, width - 8, - (height // 2) - 1, 4, "Enter name for new group:", "", + (height // 2) - 1, 4, "Enter alias name for new group:", "", normal_text, highlight_text) add_group = new_group_textpad.edit(CursesTextpadConfirm) if not add_group.rstrip() == "": @@ -557,7 +557,7 @@ def CursesMain(): if strings[position - 1] in groups: while edit_string.rstrip() == "": string_textpad = CursesTextpad(screen, 3, width - 8, - (height // 2) - 1, 4, "Enter new aliases:", + (height // 2) - 1, 4, "Enter new aliases for existing group:", (conf.get(strings[position - 1], "group") if conf.has_option(strings[position - 1], "group") else ""),