use "continue" label for continue buttons; fix project template message

This commit is contained in:
Senko Rasic
2024-05-24 12:51:29 +02:00
parent 008675f3c2
commit 2b7d018cd0
6 changed files with 46 additions and 24 deletions

View File

@@ -66,7 +66,7 @@ async def start_new_project(sm: StateManager, ui: UIBase) -> bool:
:param ui: User interface.
:return: True if the project was created successfully, False otherwise.
"""
user_input = await ui.ask_question("What is the name of the project", allow_empty=False, source=pythagora_source)
user_input = await ui.ask_question("What is the project name?", allow_empty=False, source=pythagora_source)
if user_input.cancelled:
return False