diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 0ec62410dc8aed9c840685aa89736eb62f14a2ac..519b0c850cbeedc9edb6a51ac4e4f04f27d9d708 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -459,11 +459,11 @@ class OBJ_PT_export_geometry(bpy.types.Panel):
 
 
 def menu_func_import(self, context):
-    self.layout.operator(ImportOBJ.bl_idname, text="Wavefront (.obj)")
+    self.layout.operator(ImportOBJ.bl_idname, text="Wavefront (.obj) (legacy)")
 
 
 def menu_func_export(self, context):
-    self.layout.operator(ExportOBJ.bl_idname, text="Wavefront (.obj)")
+    self.layout.operator(ExportOBJ.bl_idname, text="Wavefront (.obj) (legacy)")
 
 
 classes = (