diff --git a/cli_ui.py b/cli_ui.py index bb83213..95a2aa6 100644 --- a/cli_ui.py +++ b/cli_ui.py @@ -73,14 +73,14 @@ def cli_main(): try: with open("last_path_cache.txt", "r") as file: last_path = file.read() - choices.append(f"Open last project ({os.path.basename(last_path)})") + choices.append(f"Open recent project ({os.path.basename(last_path)})") except FileNotFoundError: last_path = None choice = get_choice( - "What do you want to do?" + " No last opened project found." if last_path is None else "", + "What do you want to do?" + " No recently opened project found." if last_path is None else "", choices )