ProjectManager: enhance dialog ok button text
This commit is contained in:
parent
7d9b7f9c47
commit
9fd7aec2b4
1 changed files with 3 additions and 3 deletions
|
@ -536,21 +536,21 @@ public:
|
|||
|
||||
if (mode == MODE_IMPORT) {
|
||||
set_title(TTR("Import Existing Project"));
|
||||
get_ok()->set_text(TTR("Import"));
|
||||
get_ok()->set_text(TTR("Import & Edit"));
|
||||
name_container->hide();
|
||||
project_path->grab_focus();
|
||||
|
||||
} else if (mode == MODE_NEW) {
|
||||
|
||||
set_title(TTR("Create New Project"));
|
||||
get_ok()->set_text(TTR("Create"));
|
||||
get_ok()->set_text(TTR("Create & Edit"));
|
||||
name_container->show();
|
||||
project_name->grab_focus();
|
||||
|
||||
} else if (mode == MODE_INSTALL) {
|
||||
|
||||
set_title(TTR("Install Project:") + " " + zip_title);
|
||||
get_ok()->set_text(TTR("Install"));
|
||||
get_ok()->set_text(TTR("Install & Edit"));
|
||||
name_container->hide();
|
||||
project_path->grab_focus();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue