diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-11-25 13:52:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-25 13:52:30 +0100 |
commit | ba997461bafe6613e236cadf4683c993d3785daf (patch) | |
tree | 7eab7e0d0b44d07e162b9d0d11e064c283def43e | |
parent | 636bc5c32f07050fb387a7f8f5f78f7dc9aef7be (diff) | |
parent | 8f0c1daf1cf8c32a7df82cdd581e610f4f369682 (diff) |
Merge pull request #33876 from nekomatata/bookmarks-menu-translation
Removed translation for bookmarks menu item name in TextEditor
-rw-r--r-- | editor/plugins/text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index 0cef5a8b6f..7651ab8526 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -713,7 +713,7 @@ TextEditor::TextEditor() { goto_menu->get_popup()->add_separator(); bookmarks_menu = memnew(PopupMenu); - bookmarks_menu->set_name(TTR("Bookmarks")); + bookmarks_menu->set_name("Bookmarks"); goto_menu->get_popup()->add_child(bookmarks_menu); goto_menu->get_popup()->add_submenu_item(TTR("Bookmarks"), "Bookmarks"); _update_bookmark_list(); |