diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-12-25 15:02:54 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-12-25 15:02:54 +0700 |
commit | bfd8047e139b4978d9d2ab2e1a72d5eea97f2776 (patch) | |
tree | 1bb49b37c78979e0d975d5eb3dc1f78381efed2e /editor | |
parent | 256a60bc6e05468ba64729f3d972086ab8ae95b5 (diff) |
EditorAbout: TTR workaround for "Project Manager" contexts
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_about.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_about.cpp b/editor/editor_about.cpp index 5f026abb6d..6db3c09673 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)); |