summaryrefslogtreecommitdiff
path: root/editor/editor_feature_profile.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-06-17 17:28:55 +0200
committerGitHub <noreply@github.com>2019-06-17 17:28:55 +0200
commit3b3ba7d179748d3b24fe457a67254db340ff8082 (patch)
treed186d34b0fff10d047a0d22fd8f83e38dc5e8837 /editor/editor_feature_profile.cpp
parent813c0d84740b1d1c8ccece3540e945d1e821561d (diff)
parent340c2c0584b9751b4671a24458e7c5244c4bf64d (diff)
Merge pull request #29847 from yurchor/master
Fix minor typos
Diffstat (limited to 'editor/editor_feature_profile.cpp')
-rw-r--r--editor/editor_feature_profile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_feature_profile.cpp b/editor/editor_feature_profile.cpp
index 56358f059a..36a8772faf 100644
--- a/editor/editor_feature_profile.cpp
+++ b/editor/editor_feature_profile.cpp
@@ -721,7 +721,7 @@ void EditorFeatureProfileManager::_import_profiles(const Vector<String> &p_paths
String dst_file = EditorSettings::get_singleton()->get_feature_profiles_dir().plus_file(basefile);
if (FileAccess::exists(dst_file)) {
- EditorNode::get_singleton()->show_warning(vformat(TTR("Profile '%s' already exists. Remote it first before importing, import aborted."), basefile.get_basename()));
+ EditorNode::get_singleton()->show_warning(vformat(TTR("Profile '%s' already exists. Remove it first before importing, import aborted."), basefile.get_basename()));
return;
}
}