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 @@ -339,7 +339,7 @@ class AssetLibraryEditorPlugin : public EditorPlugin {
339339public:
340340 static bool is_available ();
341341
342- virtual String get_plugin_name () const override { return " AssetLib" ; }
342+ virtual String get_plugin_name () const override { return TTRC ( " AssetLib" ) ; }
343343 bool has_main_screen () const override { return true ; }
344344 virtual void edit (Object *p_object) override {}
345345 virtual bool handles (Object *p_object) const override { return false ; }
Original file line number Diff line number Diff line change @@ -603,7 +603,7 @@ class CanvasItemEditorPlugin : public EditorPlugin {
603603 void _notification (int p_what);
604604
605605public:
606- virtual String get_plugin_name () const override { return " 2D" ; }
606+ virtual String get_plugin_name () const override { return TTRC ( " 2D" ) ; }
607607 bool has_main_screen () const override { return true ; }
608608 virtual void edit (Object *p_object) override ;
609609 virtual bool handles (Object *p_object) const override ;
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ class GameViewPlugin : public EditorPlugin {
220220 void _notification (int p_what);
221221
222222public:
223- virtual String get_plugin_name () const override { return " Game" ; }
223+ virtual String get_plugin_name () const override { return TTRC ( " Game" ) ; }
224224 bool has_main_screen () const override { return true ; }
225225 virtual void edit (Object *p_object) override {}
226226 virtual bool handles (Object *p_object) const override { return false ; }
Original file line number Diff line number Diff line change @@ -1014,7 +1014,7 @@ class Node3DEditorPlugin : public EditorPlugin {
10141014
10151015public:
10161016 Node3DEditor *get_spatial_editor () { return spatial_editor; }
1017- virtual String get_plugin_name () const override { return " 3D" ; }
1017+ virtual String get_plugin_name () const override { return TTRC ( " 3D" ) ; }
10181018 bool has_main_screen () const override { return true ; }
10191019 virtual void make_visible (bool p_visible) override ;
10201020 virtual void edit (Object *p_object) override ;
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ class ScriptEditorPlugin : public EditorPlugin {
622622 void _notification (int p_what);
623623
624624public:
625- virtual String get_plugin_name () const override { return " Script" ; }
625+ virtual String get_plugin_name () const override { return TTRC ( " Script" ) ; }
626626 bool has_main_screen () const override { return true ; }
627627 virtual void edit (Object *p_object) override ;
628628 virtual bool handles (Object *p_object) const override ;
You can’t perform that action at this time.
0 commit comments