diff options
author | Noshyaar <poommetee@protonmail.com> | 2017-12-27 10:26:03 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 10:26:03 +0700 |
commit | e2a091e6002cc301e562b61092234d997d8f0af1 (patch) | |
tree | a03813cee8f51b782db73bf68ac25bee609714e9 /editor/editor_about.cpp | |
parent | de2247b9b4ad1f470967c19e8b0c17476709ea79 (diff) | |
parent | bfd8047e139b4978d9d2ab2e1a72d5eea97f2776 (diff) |
Merge pull request #15032 from Noshyaar/pr
EditorAbout: TTR workaround for "Project Manager" contexts
Diffstat (limited to 'editor/editor_about.cpp')
-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)); |