diff options
author | Indah Sylvia <ISylvox@yahoo.com> | 2017-10-20 09:40:12 +0700 |
---|---|---|
committer | Indah Sylvia <ISylvox@yahoo.com> | 2017-10-20 09:47:29 +0700 |
commit | cf8537ad3713c34c4b2626ab005cc8a653f2e690 (patch) | |
tree | 9091e482d4d7bc8eeccd40ca31e9f384cd14ada8 | |
parent | 6a363ad4704cbfa916b0e10491855221a4680b8e (diff) |
Adjusted editable_warning for "This resource was imported...." alert:
- fixed a typo from it's to its
- added 'then' to make it clearer
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index aca2f59134..4ffac193f2 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -1454,7 +1454,7 @@ void EditorNode::_edit_current() { } } else if (current_res->get_path().is_resource_file()) { if (FileAccess::exists(current_res->get_path() + ".import")) { - editable_warning = TTR("This resource was imported, so it's not editable. Change it's settings in the import panel and re-import."); + editable_warning = TTR("This resource was imported, so it's not editable. Change its settings in the import panel and then re-import."); } } } else if (is_node) { |