finish handle for properties_XXX scripts
This commit is contained in:
@@ -19,7 +19,7 @@
|
||||
# <pep8 compliant>
|
||||
import bpy
|
||||
from rna_prop_ui import PropertyPanel
|
||||
|
||||
from blf import gettext as _
|
||||
|
||||
class CurveButtonsPanel():
|
||||
bl_space_type = 'PROPERTIES'
|
||||
@@ -66,7 +66,7 @@ class DATA_PT_context_curve(CurveButtonsPanel, bpy.types.Panel):
|
||||
|
||||
|
||||
class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel):
|
||||
bl_label = "Shape"
|
||||
bl_label = _("Shape")
|
||||
|
||||
def draw(self, context):
|
||||
layout = self.layout
|
||||
@@ -84,17 +84,17 @@ class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel):
|
||||
split = layout.split()
|
||||
|
||||
col = split.column()
|
||||
col.label(text="Resolution:")
|
||||
col.label(text=_("Resolution:"))
|
||||
sub = col.column(align=True)
|
||||
sub.prop(curve, "resolution_u", text="Preview U")
|
||||
sub.prop(curve, "render_resolution_u", text="Render U")
|
||||
sub.prop(curve, "resolution_u", text=_("Preview U"))
|
||||
sub.prop(curve, "render_resolution_u", text=_("Render U"))
|
||||
if is_curve:
|
||||
col.label(text="Twisting:")
|
||||
col.label(text=_("Twisting:"))
|
||||
col.prop(curve, "twist_mode", text="")
|
||||
col.prop(curve, "twist_smooth", text="Smooth")
|
||||
col.prop(curve, "twist_smooth", text=_("Smooth"))
|
||||
if is_text:
|
||||
col.label(text="Display:")
|
||||
col.prop(curve, "use_fast_edit", text="Fast Editing")
|
||||
col.label(text=_("Display:"))
|
||||
col.prop(curve, "use_fast_edit", text=_("Fast Editing"))
|
||||
|
||||
col = split.column()
|
||||
|
||||
@@ -102,20 +102,20 @@ class DATA_PT_shape_curve(CurveButtonsPanel, bpy.types.Panel):
|
||||
sub = col.column()
|
||||
sub.label(text="")
|
||||
sub = col.column(align=True)
|
||||
sub.prop(curve, "resolution_v", text="Preview V")
|
||||
sub.prop(curve, "render_resolution_v", text="Render V")
|
||||
sub.prop(curve, "resolution_v", text=_("Preview V"))
|
||||
sub.prop(curve, "render_resolution_v", text=_("Render V"))
|
||||
|
||||
if (is_curve or is_text):
|
||||
col.label(text="Fill:")
|
||||
col.label(text=_("Fill:"))
|
||||
sub = col.column()
|
||||
sub.active = (curve.bevel_object is None)
|
||||
sub.prop(curve, "use_fill_front")
|
||||
sub.prop(curve, "use_fill_back")
|
||||
col.prop(curve, "use_fill_deform", text="Fill Deformed")
|
||||
col.prop(curve, "use_fill_deform", text=_("Fill Deformed"))
|
||||
|
||||
|
||||
class DATA_PT_curve_texture_space(CurveButtonsPanel, bpy.types.Panel):
|
||||
bl_label = "Texture Space"
|
||||
bl_label = _("Texture Space")
|
||||
bl_options = {'DEFAULT_CLOSED'}
|
||||
COMPAT_ENGINES = {'BLENDER_RENDER', 'BLENDER_GAME'}
|
||||
|
||||
@@ -129,12 +129,12 @@ class DATA_PT_curve_texture_space(CurveButtonsPanel, bpy.types.Panel):
|
||||
row.prop(curve, "use_uv_as_generated")
|
||||
|
||||
row = layout.row()
|
||||
row.column().prop(curve, "texspace_location", text="Location")
|
||||
row.column().prop(curve, "texspace_size", text="Size")
|
||||
row.column().prop(curve, "texspace_location", text=_("Location"))
|
||||
row.column().prop(curve, "texspace_size", text=_("Size"))
|
||||
|
||||
|
||||
class DATA_PT_geometry_curve(CurveButtonsPanel, bpy.types.Panel):
|
||||
bl_label = "Geometry"
|
||||
bl_label = _("Geometry")
|
||||
|
||||
@classmethod
|
||||
def poll(cls, context):
|
||||
@@ -152,22 +152,22 @@ class DATA_PT_geometry_curve(CurveButtonsPanel, bpy.types.Panel):
|
||||
split = layout.split()
|
||||
|
||||
col = split.column()
|
||||
col.label(text="Modification:")
|
||||
col.label(text=_("Modification:"))
|
||||
col.prop(curve, "offset")
|
||||
col.prop(curve, "extrude")
|
||||
col.label(text="Taper Object:")
|
||||
col.label(text=_("Taper Object:"))
|
||||
col.prop(curve, "taper_object", text="")
|
||||
|
||||
col = split.column()
|
||||
col.label(text="Bevel:")
|
||||
col.prop(curve, "bevel_depth", text="Depth")
|
||||
col.prop(curve, "bevel_resolution", text="Resolution")
|
||||
col.label(text="Bevel Object:")
|
||||
col.label(text=_("Bevel:"))
|
||||
col.prop(curve, "bevel_depth", text=_("Depth"))
|
||||
col.prop(curve, "bevel_resolution", text=_("Resolution"))
|
||||
col.label(text=_("Bevel Object:"))
|
||||
col.prop(curve, "bevel_object", text="")
|
||||
|
||||
|
||||
class DATA_PT_pathanim(CurveButtonsPanelCurve, bpy.types.Panel):
|
||||
bl_label = "Path Animation"
|
||||
bl_label = _("Path Animation")
|
||||
|
||||
def draw_header(self, context):
|
||||
curve = context.curve
|
||||
@@ -182,7 +182,7 @@ class DATA_PT_pathanim(CurveButtonsPanelCurve, bpy.types.Panel):
|
||||
layout.active = curve.use_path
|
||||
|
||||
col = layout.column()
|
||||
layout.prop(curve, "path_duration", text="Frames")
|
||||
layout.prop(curve, "path_duration", text=_("Frames"))
|
||||
layout.prop(curve, "eval_time")
|
||||
|
||||
split = layout.split()
|
||||
@@ -194,11 +194,11 @@ class DATA_PT_pathanim(CurveButtonsPanelCurve, bpy.types.Panel):
|
||||
|
||||
col = split.column()
|
||||
col.prop(curve, "use_radius")
|
||||
col.prop(curve, "use_time_offset", text="Offset Children")
|
||||
col.prop(curve, "use_time_offset", text=_("Offset Children"))
|
||||
|
||||
|
||||
class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
|
||||
bl_label = "Active Spline"
|
||||
bl_label = _("Active Spline")
|
||||
|
||||
def draw(self, context):
|
||||
layout = self.layout
|
||||
@@ -215,20 +215,20 @@ class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
|
||||
# These settings are below but its easier to have
|
||||
# poly's set aside since they use so few settings
|
||||
col = split.column()
|
||||
col.label(text="Cyclic:")
|
||||
col.label(text=_("Cyclic:"))
|
||||
col.prop(act_spline, "use_smooth")
|
||||
col = split.column()
|
||||
col.prop(act_spline, "use_cyclic_u", text="U")
|
||||
|
||||
else:
|
||||
col = split.column()
|
||||
col.label(text="Cyclic:")
|
||||
col.label(text=_("Cyclic:"))
|
||||
if act_spline.type == 'NURBS':
|
||||
col.label(text="Bezier:")
|
||||
col.label(text="Endpoint:")
|
||||
col.label(text="Order:")
|
||||
col.label(text=_("Bezier:"))
|
||||
col.label(text=_("Endpoint:"))
|
||||
col.label(text=_("Order:"))
|
||||
|
||||
col.label(text="Resolution:")
|
||||
col.label(text=_("Resolution:"))
|
||||
|
||||
col = split.column()
|
||||
col.prop(act_spline, "use_cyclic_u", text="U")
|
||||
@@ -261,15 +261,15 @@ class DATA_PT_active_spline(CurveButtonsPanelActive, bpy.types.Panel):
|
||||
col = split.column()
|
||||
col.active = (curve.dimensions == '3D')
|
||||
|
||||
col.label(text="Interpolation:")
|
||||
col.prop(act_spline, "tilt_interpolation", text="Tilt")
|
||||
col.prop(act_spline, "radius_interpolation", text="Radius")
|
||||
col.label(text=_("Interpolation:"))
|
||||
col.prop(act_spline, "tilt_interpolation", text=_("Tilt"))
|
||||
col.prop(act_spline, "radius_interpolation", text=_("Radius"))
|
||||
|
||||
layout.prop(act_spline, "use_smooth")
|
||||
|
||||
|
||||
class DATA_PT_font(CurveButtonsPanel, bpy.types.Panel):
|
||||
bl_label = "Font"
|
||||
bl_label = _("Font")
|
||||
|
||||
@classmethod
|
||||
def poll(cls, context):
|
||||
@@ -282,16 +282,16 @@ class DATA_PT_font(CurveButtonsPanel, bpy.types.Panel):
|
||||
char = context.curve.edit_format
|
||||
|
||||
row = layout.split(percentage=0.25)
|
||||
row.label(text="Regular")
|
||||
row.label(text=_("Regular"))
|
||||
row.template_ID(text, "font", open="font.open", unlink="font.unlink")
|
||||
row = layout.split(percentage=0.25)
|
||||
row.label(text="Bold")
|
||||
row.label(text=_("Bold"))
|
||||
row.template_ID(text, "font_bold", open="font.open", unlink="font.unlink")
|
||||
row = layout.split(percentage=0.25)
|
||||
row.label(text="Italic")
|
||||
row.label(text=_("Italic"))
|
||||
row.template_ID(text, "font_italic", open="font.open", unlink="font.unlink")
|
||||
row = layout.split(percentage=0.25)
|
||||
row.label(text="Bold & Italic")
|
||||
row.label(text=_("Bold & Italic"))
|
||||
row.template_ID(text, "font_bold_italic", open="font.open", unlink="font.unlink")
|
||||
|
||||
#layout.prop(text, "font")
|
||||
@@ -299,41 +299,41 @@ class DATA_PT_font(CurveButtonsPanel, bpy.types.Panel):
|
||||
split = layout.split()
|
||||
|
||||
col = split.column()
|
||||
col.prop(text, "size", text="Size")
|
||||
col.prop(text, "size", text=_("Size"))
|
||||
col = split.column()
|
||||
col.prop(text, "shear")
|
||||
|
||||
split = layout.split()
|
||||
|
||||
col = split.column()
|
||||
col.label(text="Object Font:")
|
||||
col.label(text=_("Object Font:"))
|
||||
col.prop(text, "family", text="")
|
||||
|
||||
col = split.column()
|
||||
col.label(text="Text on Curve:")
|
||||
col.label(text=_("Text on Curve:"))
|
||||
col.prop(text, "follow_curve", text="")
|
||||
|
||||
split = layout.split()
|
||||
|
||||
col = split.column()
|
||||
colsub = col.column(align=True)
|
||||
colsub.label(text="Underline:")
|
||||
colsub.prop(text, "underline_position", text="Position")
|
||||
colsub.prop(text, "underline_height", text="Thickness")
|
||||
colsub.label(text=_("Underline:"))
|
||||
colsub.prop(text, "underline_position", text=_("Position"))
|
||||
colsub.prop(text, "underline_height", text=_("Thickness"))
|
||||
|
||||
col = split.column()
|
||||
col.label(text="Character:")
|
||||
col.label(text=_("Character:"))
|
||||
col.prop(char, "use_bold")
|
||||
col.prop(char, "use_italic")
|
||||
col.prop(char, "use_underline")
|
||||
|
||||
row = layout.row()
|
||||
row.prop(text, "small_caps_scale", text="Small Caps")
|
||||
row.prop(text, "small_caps_scale", text=_("Small Caps"))
|
||||
row.prop(char, "use_small_caps")
|
||||
|
||||
|
||||
class DATA_PT_paragraph(CurveButtonsPanel, bpy.types.Panel):
|
||||
bl_label = "Paragraph"
|
||||
bl_label = _("Paragraph")
|
||||
|
||||
@classmethod
|
||||
def poll(cls, context):
|
||||
@@ -344,25 +344,25 @@ class DATA_PT_paragraph(CurveButtonsPanel, bpy.types.Panel):
|
||||
|
||||
text = context.curve
|
||||
|
||||
layout.label(text="Align:")
|
||||
layout.label(text=_("Align:"))
|
||||
layout.prop(text, "align", expand=True)
|
||||
|
||||
split = layout.split()
|
||||
|
||||
col = split.column(align=True)
|
||||
col.label(text="Spacing:")
|
||||
col.prop(text, "space_character", text="Character")
|
||||
col.prop(text, "space_word", text="Word")
|
||||
col.prop(text, "space_line", text="Line")
|
||||
col.label(text=_("Spacing:"))
|
||||
col.prop(text, "space_character", text=_("Character"))
|
||||
col.prop(text, "space_word", text=_("Word"))
|
||||
col.prop(text, "space_line", text=_("Line"))
|
||||
|
||||
col = split.column(align=True)
|
||||
col.label(text="Offset:")
|
||||
col.label(text=_("Offset:"))
|
||||
col.prop(text, "offset_x", text="X")
|
||||
col.prop(text, "offset_y", text="Y")
|
||||
|
||||
|
||||
class DATA_PT_textboxes(CurveButtonsPanel, bpy.types.Panel):
|
||||
bl_label = "Text Boxes"
|
||||
bl_label = _("Text Boxes")
|
||||
|
||||
@classmethod
|
||||
def poll(cls, context):
|
||||
@@ -388,13 +388,13 @@ class DATA_PT_textboxes(CurveButtonsPanel, bpy.types.Panel):
|
||||
|
||||
col = split.column(align=True)
|
||||
|
||||
col.label(text="Dimensions:")
|
||||
col.prop(box, "width", text="Width")
|
||||
col.prop(box, "height", text="Height")
|
||||
col.label(text=_("Dimensions:"))
|
||||
col.prop(box, "width", text=_("Width"))
|
||||
col.prop(box, "height", text=_("Height"))
|
||||
|
||||
col = split.column(align=True)
|
||||
|
||||
col.label(text="Offset:")
|
||||
col.label(text=_("Offset:"))
|
||||
col.prop(box, "x", text="X")
|
||||
col.prop(box, "y", text="Y")
|
||||
|
||||
|
Reference in New Issue
Block a user