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

@@ -19,7 +19,6 @@
# <pep8 compliant>
import bpy
from bpy.types import Header, Menu, Panel
from blf import gettext as _
class LOGIC_PT_properties(Panel):
@@ -38,7 +37,7 @@ class LOGIC_PT_properties(Panel):
ob = context.active_object
game = ob.game
layout.operator("object.game_property_new", text=_("Add Game Property"), icon='ZOOMIN')
layout.operator("object.game_property_new", text="Add Game Property", icon='ZOOMIN')
for i, prop in enumerate(game.properties):
@@ -57,9 +56,9 @@ class LOGIC_MT_logicbricks_add(Menu):
def draw(self, context):
layout = self.layout
layout.operator_menu_enum("logic.sensor_add", "type", text=_("Sensor"))
layout.operator_menu_enum("logic.controller_add", "type", text=_("Controller"))
layout.operator_menu_enum("logic.actuator_add", "type", text=_("Actuator"))
layout.operator_menu_enum("logic.sensor_add", "type", text="Sensor")
layout.operator_menu_enum("logic.controller_add", "type", text="Controller")
layout.operator_menu_enum("logic.actuator_add", "type", text="Actuator")
class LOGIC_HT_header(Header):