aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_about.cpp
diff options
context:
space:
mode:
authorPoommetee Ketson2017-12-25 15:02:54 +0700
committerPoommetee Ketson2017-12-25 15:02:54 +0700
commitbfd8047e139b4978d9d2ab2e1a72d5eea97f2776 (patch)
tree1bb49b37c78979e0d975d5eb3dc1f78381efed2e /editor/editor_about.cpp
parent256a60bc6e05468ba64729f3d972086ab8ae95b5 (diff)
downloadgodot-bfd8047e139b4978d9d2ab2e1a72d5eea97f2776.tar.gz
godot-bfd8047e139b4978d9d2ab2e1a72d5eea97f2776.tar.zst
godot-bfd8047e139b4978d9d2ab2e1a72d5eea97f2776.zip
EditorAbout: TTR workaround for "Project Manager" contexts
Diffstat (limited to '')
-rw-r--r--editor/editor_about.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp
index 5f026abb6..6db3c0967 100644
--- a/editor/editor_about.cpp
+++ b/editor/editor_about.cpp
@@ -145,7 +145,7 @@ EditorAbout::EditorAbout() {
List<String> dev_sections;
dev_sections.push_back(TTR("Project Founders"));
dev_sections.push_back(TTR("Lead Developer"));
- dev_sections.push_back(TTR("Project Manager"));
+ dev_sections.push_back(TTR("Project Manager ")); // " " appended to distinguish between 'project supervisor' and 'project list'
dev_sections.push_back(TTR("Developers"));
const char **dev_src[] = { dev_founders, dev_lead, dev_manager, dev_names };
tc->add_child(_populate_list(TTR("Authors"), dev_sections, dev_src, 1));