remove use of gettext: _("...") style translation now its handled by rna.

This commit is contained in:
2011-09-21 15:18:38 +00:00
parent ae0124157f
commit f4c56a879d
40 changed files with 1963 additions and 2004 deletions

View File

@@ -20,7 +20,6 @@
import bpy
from bpy.types import Header, Menu, Operator
from bpy.props import StringProperty
from blf import gettext as _
class CONSOLE_HT_header(Header):
@@ -34,7 +33,7 @@ class CONSOLE_HT_header(Header):
if context.area.show_menus:
layout.menu("CONSOLE_MT_console")
layout.operator("console.autocomplete", text=_("Autocomplete"))
layout.operator("console.autocomplete", text="Autocomplete")
class CONSOLE_MT_console(Menu):