File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ class AssetLibraryEditorPlugin : public EditorPlugin {
338338public:
339339 static bool is_available ();
340340
341- virtual String get_plugin_name () const override { return " AssetLib" ; }
341+ virtual String get_plugin_name () const override { return TTRC ( " AssetLib" ) ; }
342342 bool has_main_screen () const override { return true ; }
343343 virtual void edit (Object *p_object) override {}
344344 virtual bool handles (Object *p_object) const override { return false ; }
Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ class CanvasItemEditorPlugin : public EditorPlugin {
600600 void _notification (int p_what);
601601
602602public:
603- virtual String get_plugin_name () const override { return " 2D" ; }
603+ virtual String get_plugin_name () const override { return TTRC ( " 2D" ) ; }
604604 bool has_main_screen () const override { return true ; }
605605 virtual void edit (Object *p_object) override ;
606606 virtual bool handles (Object *p_object) const override ;
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ class GameViewPlugin : public EditorPlugin {
238238 void _notification (int p_what);
239239
240240public:
241- virtual String get_plugin_name () const override { return " Game" ; }
241+ virtual String get_plugin_name () const override { return TTRC ( " Game" ) ; }
242242 bool has_main_screen () const override { return true ; }
243243 virtual void edit (Object *p_object) override {}
244244 virtual bool handles (Object *p_object) const override { return false ; }
Original file line number Diff line number Diff line change @@ -1048,7 +1048,7 @@ class Node3DEditorPlugin : public EditorPlugin {
10481048
10491049public:
10501050 Node3DEditor *get_spatial_editor () { return spatial_editor; }
1051- virtual String get_plugin_name () const override { return " 3D" ; }
1051+ virtual String get_plugin_name () const override { return TTRC ( " 3D" ) ; }
10521052 bool has_main_screen () const override { return true ; }
10531053 virtual void make_visible (bool p_visible) override ;
10541054 virtual void edit (Object *p_object) override ;
Original file line number Diff line number Diff line change @@ -621,7 +621,7 @@ class ScriptEditorPlugin : public EditorPlugin {
621621 void _notification (int p_what);
622622
623623public:
624- virtual String get_plugin_name () const override { return " Script" ; }
624+ virtual String get_plugin_name () const override { return TTRC ( " Script" ) ; }
625625 bool has_main_screen () const override { return true ; }
626626 virtual void edit (Object *p_object) override ;
627627 virtual bool handles (Object *p_object) const override ;
You can’t perform that action at this time.
0 commit comments