You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Rename Q&A to Forum in the Help top bar
This commit is contained in:
@@ -3055,8 +3055,8 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
|
|||||||
case HELP_DOCS: {
|
case HELP_DOCS: {
|
||||||
OS::get_singleton()->shell_open(VERSION_DOCS_URL "/");
|
OS::get_singleton()->shell_open(VERSION_DOCS_URL "/");
|
||||||
} break;
|
} break;
|
||||||
case HELP_QA: {
|
case HELP_FORUM: {
|
||||||
OS::get_singleton()->shell_open("https://godotengine.org/qa/");
|
OS::get_singleton()->shell_open("https://forum.godotengine.org/");
|
||||||
} break;
|
} break;
|
||||||
case HELP_REPORT_A_BUG: {
|
case HELP_REPORT_A_BUG: {
|
||||||
OS::get_singleton()->shell_open("https://github.com/godotengine/godot/issues");
|
OS::get_singleton()->shell_open("https://github.com/godotengine/godot/issues");
|
||||||
@@ -6886,7 +6886,7 @@ EditorNode::EditorNode() {
|
|||||||
help_menu->add_icon_shortcut(theme->get_icon(SNAME("HelpSearch"), EditorStringName(EditorIcons)), ED_GET_SHORTCUT("editor/editor_help"), HELP_SEARCH);
|
help_menu->add_icon_shortcut(theme->get_icon(SNAME("HelpSearch"), EditorStringName(EditorIcons)), ED_GET_SHORTCUT("editor/editor_help"), HELP_SEARCH);
|
||||||
help_menu->add_separator();
|
help_menu->add_separator();
|
||||||
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/online_docs", TTR("Online Documentation")), HELP_DOCS);
|
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/online_docs", TTR("Online Documentation")), HELP_DOCS);
|
||||||
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/q&a", TTR("Questions & Answers")), HELP_QA);
|
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/forum", TTR("Forum")), HELP_FORUM);
|
||||||
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/community", TTR("Community")), HELP_COMMUNITY);
|
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/community", TTR("Community")), HELP_COMMUNITY);
|
||||||
help_menu->add_separator();
|
help_menu->add_separator();
|
||||||
help_menu->add_icon_shortcut(theme->get_icon(SNAME("ActionCopy"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/copy_system_info", TTR("Copy System Info")), HELP_COPY_SYSTEM_INFO);
|
help_menu->add_icon_shortcut(theme->get_icon(SNAME("ActionCopy"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/copy_system_info", TTR("Copy System Info")), HELP_COPY_SYSTEM_INFO);
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ private:
|
|||||||
HELP_SEARCH,
|
HELP_SEARCH,
|
||||||
HELP_COMMAND_PALETTE,
|
HELP_COMMAND_PALETTE,
|
||||||
HELP_DOCS,
|
HELP_DOCS,
|
||||||
HELP_QA,
|
HELP_FORUM,
|
||||||
HELP_REPORT_A_BUG,
|
HELP_REPORT_A_BUG,
|
||||||
HELP_COPY_SYSTEM_INFO,
|
HELP_COPY_SYSTEM_INFO,
|
||||||
HELP_SUGGEST_A_FEATURE,
|
HELP_SUGGEST_A_FEATURE,
|
||||||
|
|||||||
Reference in New Issue
Block a user